git config --global user.name 'lanyu96'
git config --global user.email '[email protected]'
//設定ssh key
cd ~/.ssh //檢查是否已生成金鑰
ssh-keygen -t rsa -c "[email protected]" //生成key
c:\user\zhou\.ssh(zhou為電腦使用者名稱) id_rsa.pub
將ssh key加入到github裡
git status
git add hello.py
git add . //新增所有檔案
git commit -m '提交描述'
git remote add origin 倉庫位址 //新增倉庫位址
git pull --rebase origin master //**合併
git push -u origin master //上傳本地**
//刪除雲端檔案,本地保留
git rm --cached -r filename
git commit -m "注釋"
git push -u origin master
touch test.php //建立檔案
rm test.php //刪除檔案
git rm test.php //從git中刪除
git config --list //檢視配置清單
git branch test //建立分支
git checkout test //切換分支
git remote add origin https://*********** //與遠端分支關聯
git push origin test //將分支上傳
Github及git常用命令
使用github時,需要經常使用許多git命令來對 來進行操作。這些命令都是比較好記的,多用就沒問題了。good luck!git配置 git config l 檢視git配置資訊 git config global user.name your name 配置使用者名稱 git config gl...
github上傳和git一些常用命令
賬戶郵箱為github上的 git config global user.name sukies github的使用者名稱 git config global user.email 163.com github的註冊郵箱 ssh keygen t rsa c sukies github的使用者名稱 ...
GitHub常用命令
1 git簡介 git是用c語言開發的分布版本控制系統。版本控制系統可以保留乙個檔案集合的歷史記錄,並能回滾到另外乙個狀態 歷史記錄狀態 對於任何乙個檔案,在 git 內都只有三種狀態 已提交 committed 已修改 modified 和已暫存 staged 已提交表示該檔案已經被安全地儲存在本...