安装Git

1
$ aptitude install git

配置Git帐号邮箱

1
2
$ git config --global user.name YourUserName
$ git config --global user.email YourEmail@example.com

查看Git帐号邮箱

1
2
$ git config user.name
$ git config user.email

查看Git版本状态

1
$ git status

Git提交数据

1
2
$ git commit -m "comment"
$ git push

PS: Windows和MacOS上可以使用SourceTree作为Git客户端,非常好用。