https://github.com/alevalv/git-tutorial
https://github.com/alevalv/git-tutorial
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alevalv/git-tutorial
- Owner: alevalv
- Created: 2017-11-17T15:02:55.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-17T15:27:48.000Z (over 7 years ago)
- Last Synced: 2025-02-13T20:41:48.900Z (5 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