1. Create a git repository
???? Git init--bare library name
????
2. Clone the resource under the user folder
???? git clone < Warehouse directory >/g/software/repository/git/itheima < user directory >.
???? Note: The user directory must be empty when clone
?
3. Create a file that is included in version control.
???? git add < filename >
???? The first execution would warn: WARNING:LF will is replaced by CRLF in Readme.txt.
???????????????????????? The file would have their original line endings in your working directory.
???? Warning Handling: User information needs to be configured
???????????????????? git config user.name = "Zhangsan"
???????????????????? git config user.email = "[Email protected]"
????????????????????
4. Submit to the local repository.
???? Git commit < file name >
????
5. Push to the remote shared repository
???? Git push Origin Master
????
6. Switch users, pull up the latest files
???? Git pull
????
Common git commands