Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adorsys-gis/geass
The guide is designed to help beginners understand and use ADORSYS-GIS tools and techs more effectively.
https://github.com/adorsys-gis/geass
Last synced: about 4 hours ago
JSON representation
The guide is designed to help beginners understand and use ADORSYS-GIS tools and techs more effectively.
- Host: GitHub
- URL: https://github.com/adorsys-gis/geass
- Owner: ADORSYS-GIS
- Created: 2024-06-12T11:38:53.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-12T11:54:04.000Z (5 months ago)
- Last Synced: 2024-06-12T16:12:01.959Z (5 months ago)
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Geass
This guide provides a collection of essential GitHub commands to enhance productivity. Master these commands and streamline your version control workflow!
## Key Topics
1. **Setting Up and Configuring Git**
- Initialize a new repository with `git init`.
- Configure your username and email with `git config --global`.2. **Cloning and Creating Repositories**
- Clone a repository with `git clone `.
- Create a new repository with `git init `.3. **Basic Workflow Commands**
- Check the status of your repository with `git status`.
- Stage and commit changes using `git add` and `git commit`.4. **Branching and Merging**
- Create and switch to branches with `git branch` and `git checkout`.5. **Handling Changes and Updates**
- View commit history with `git log`.
- Revert and reset changes using `git revert` and `git reset`.6. **Collaborating with Others**
- Fork repositories and submit pull requests on GitHub.
- Fetch updates from upstream with `git fetch upstream`.## Tips:
- Use `git help ` for more information on any command.
- Keep your commits atomic and descriptive for an organized history.