2013-09-23 101 views
0

Git的新手。設置Git評論

我有一個根文件夾,其中包含我想添加到本地Git存儲庫的源文件。

這是我做的(我錯過了什麼?)

去根文件夾

cd ~/MySource 

創建存儲庫

git init 

添加一切

git add . 

永遠承諾ything

git commit -m "First commit, hope it works" 

沒有錯誤,所以我們好到哪裏去?我的開發工具有Git並內置,看起來一切正常...

+0

看起來不錯。檢查這個答案:http://stackoverflow.com/questions/7632454/how-to-use-git-bare-init-repository – ppaulojr

回答

2

Yeap,現在你已經把你的代碼放在版本控制下。

我強烈建議,如果你是新的到Git,藉此快速詛咒學習的Git - >Got 15 minutes and want to learn Git?

如果你提交到Github上,你可以設置你的configs

$ git config --global user.name "Your Name"    # Set your Git name  
$ git config --global user.email [email protected]  # 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 

Commi t to GitHub

$ git remote add origin [email protected]: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