- Install Git on Windows
- Configure Git
- Set Git for local project (no server)
- Commits and branches
- References
Download and install from https://gitforwindows.org/
Activate the color in Git. It should only be done once, and it helps the readability of the messages in the console.
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
Configure your nickname:
git config --global user.name "fauresystems"
Configure your email:
git config --global user.email [email protected]
Git server isn't required to control source code locally. Create new repository (folder managed with Git):
cd project_folder
git init
Commits should be done several times a day, description to be a single line.
New branch is created when code modification will take a long time, then a merge is done (to master branch) when job is ready.
Quick guide (git - petit guide).
Faure Systems (Oct 9th, 2019)
- company: FAURE SYSTEMS SAS
- mail: dev at faure dot systems
- github: fauresystems
- web: Faure Systems