20
loading...
This website collects cookies to deliver better user experience
Writing a book in a team with a VCS | Writing code in a team with Git |
---|---|
Book | Code Project |
Book Section or Chapter | Project Folder or File |
Main version of the book | Main branch, or Head |
Download the book for the first time | Check out the project – git checkout
|
Update the book to the latest version | Pull changes, or Fetch changes – git pull / git fetch
|
Temporary version to try new ideas | Branch – git branch
|
Request to join temporary version to the main | Pull request, or Merge request – git request-pull
|
Join temporary version to the main | Merge branches, or pull changes to Main branch – git merge / git pull / git fetch
|
Save changes on the computer | Commit changes – git commit
|
Upload changes to the team server | Push changes – git push
|
Find who wrote a line of text | git blame |