Git的新手。
我有一个包含我想要添加到本地Git存储库的源的根文件夹。
这就是我的所作所为(我错过了什么吗?)
转到根文件夹
cd ~/MySource
创建存储库
git init
添加所有内容
git add .
承诺一切
git commit -m "First commit, hope it works"
没有错误,所以我们很高兴去?我的开发工具有Git并内置,它看起来都很好......
答案 0 :(得分:2)
是的,您现在已将代码置于版本控制之下。
我强烈建议,如果你是Git 的新手,要把这个快速诅咒带到学习Git - >的 Got 15 minutes and want to learn Git? 强>
如果您承诺使用Github,您可以设置您的配置
$ git config --global user.name "Your Name" # Set your Git name
$ git config --global user.email youremail@gmail.com # Set your Git email
在版本控制下设置您的代码
$ git init # Set up Git on your project
$ git status # See tracked, untracked, and staged files
$ git add . # Add new files to Git
$ git commit -am "Initial commit" # Save your project files to Git
致力于GitHub
$ git remote add origin git@github.com:yourusername/yours.git # Set up git to push to your Github repository
$ git push -u origin master # Push your code to Github (sets the upstream the first time)
$ git push # Push your code to Github