标签:
Set up Git on your machine if you haven‘t already.
mkdir /path/to/your/projectcd /path/to/your/projectgit initgit remote add origin https://wcj543680484@bitbucket.org/wcj543680484/test.git
echo "wang caijie" >> contributors.txtgit add contributors.txtgit commit -m ‘Initial commit with contributors‘git push -u origin master
Great job, now you‘re all set up! Get started coding or create a team and invite people to work with you.
标签:
原文地址:http://www.cnblogs.com/cj2014/p/4806226.html