安装Git
1 | aptitude install git |
配置Git帐号邮箱
1 | git config --global user.name YourUserName |
查看Git帐号邮箱
1 | git config user.name |
查看Git版本状态
1 | git status |
Git提交数据
1 | git commit -m "comment" |
PS: Windows和MacOS上可以使用SourceTree作为Git客户端,非常好用。
安装Git
1 | aptitude install git |
配置Git帐号邮箱
1 | git config --global user.name YourUserName |
查看Git帐号邮箱
1 | git config user.name |
查看Git版本状态
1 | git status |
Git提交数据
1 | git commit -m "comment" |
PS: Windows和MacOS上可以使用SourceTree作为Git客户端,非常好用。