Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alevalv/git-tutorial
https://github.com/alevalv/git-tutorial
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alevalv/git-tutorial
- Owner: alevalv
- Created: 2017-11-17T15:02:55.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-17T15:27:48.000Z (about 7 years ago)
- Last Synced: 2024-11-03T11:42:17.321Z (2 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test
Example repository to show some github funcionality# Commands
## Configuration
git config --global user.name "Your Name"
git config --global user.email "your email"# Pull Request
git checkout -b issue/1 // creates the branch issue/1
git checkout issue/2 // switch to branch issue/2
# commit structure
```
:work description
```# merge
TODO