#设置git的全局属性Git global setup
git config --global user.name "huanggua"
git config --global user.email "huanggua@myweimai.com"#本地创建一个新的仓库Create a new repository
git clone http://192.168.1.209:9898/javasdk/graylog-sms-alert-notify.git
cd graylog-sms-alert-notifytouch README.mdgit add README.mdgit commit -m "add README"git push -u origin master#如果本地已经有了文件夹用来上传Existing folder or Git repository
cd existing_folder
git init#这里origin是远端的别名,也可以自定义git remote add origin2 http://192.168.1.209:9898/javasdk/graylog-sms-alert-notify.gitgit add .git commitgit push -u origin master 在gitbash 中设置好后,在sourcestree中直接打开文件,就可以上传和下载