[Linux] Git project version management tool

Article Directory

git

Project version management tool, used to organize and archive the various stages of the project cycle to facilitate project management (for example, you can perform operations such as rollback after an error)

Basic operation

1. Establish a remote warehouse on github
2. Clone the remote warehouse locally: git clone followed by the github warehouse URL
3. Submit this modification record: git add all./ or git add path/filename
4. Submit the local warehouse version management: git commit -m "Add remarks in double quotes"
5. Synchronize the local version to the remote warehouse: git push origin master (master is the main branch, branch operations are convenient for multiple users to maintain the project together)

Guess you like

Origin blog.csdn.net/weixin_43962381/article/details/113553553