多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
安装git ``` yum install git -y git --version ``` 配置git ``` git config --global user.email "user01@alphabook.cn" git config --global user.name "user 01" ``` 创建git仓库 ``` mkdir -p /git/repo1 git init /git/repo1 ``` git克隆 ``` git clone root@192.168.10.71:/git/repo1 ``` 提交变更 ``` touch a.c git add a.c git commit -m "add a.c" git push origin master ``` The most commonly used git commands are: ``` add Add file contents to the index bisect Find by binary search the change that introduced a bug branch List, create, or delete branches checkout Checkout a branch or paths to the working tree clone Clone a repository into a new directory commit Record changes to the repository diff Show changes between commits, commit and working tree, etc fetch Download objects and refs from another repository grep Print lines matching a pattern init Create an empty Git repository or reinitialize an existing one log Show commit logs merge Join two or more development histories together mv Move or rename a file, a directory, or a symlink pull Fetch from and merge with another repository or a local branch push Update remote refs along with associated objects rebase Forward-port local commits to the updated upstream head reset Reset current HEAD to the specified state rm Remove files from the working tree and from the index show Show various types of objects status Show the working tree status tag Create, list, delete or verify a tag object signed with GPG ```