Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alevalv/git-tutorial


https://github.com/alevalv/git-tutorial

Last synced: 23 days ago
JSON representation

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