1. 程式人生 > >Linux下使用git命令建立github倉庫並同步到遠端

Linux下使用git命令建立github倉庫並同步到遠端

配置git資訊

git config --global user.name 'your name'	# 配置名字資訊,例如,你的github使用者名稱
git config --global user.email 'your email'	# 配置郵箱,例如,你的github註冊郵箱
git config --gloabl credential.helper cache	
git config --gloabl credential.helper 'cache --timeout=3600'	# 配置超時時間

新建git倉庫

要先去github上新建一個倉庫(repo),建好後可以得到該倉庫的地址,其格式形如

https://github.com/your_user_name/new_repo_name.git ,在github倉庫主目錄上點選Clone or download,即可看到該repo的地址。
在這裡插入圖片描述
之所以要這樣,是因為據我的測試,在本地是無法直接新建repo的,只能先在github上新建好一個repo後,然後在本地通過命令與該遠端repo相關聯。

在本地新建倉庫並與遠端repo相關聯

git init	# 在本地初始化git
touch README	# 為該倉庫新建一個README檔案
git add README	# 將該檔案新增到git緩衝區
git commit -m 'add readme'	# 提交到緩衝區,-m表示message,後面接的是提交資訊
git remote add origin https://github.com/user_name/epo_name.git # 新增遠端源repo
git push origin master	# 將更新同步到master分支	# 此處將README檔案同步到遠端的repo中

其他

git checkout -b dev		# 建立新分支dev並切換至dev分支
git checkout master 	# 切換回master分支

git branch -a 		# 獲取所有分支資訊
git config --list 	# 獲取本地git的配置資訊(使用者名稱、郵箱等)
git remote -v 	# 檢視遠端repo的地址