git clone ssh:
git add .
git commit -m "test.txt created by zyu"
git log --oneline --graph
oneline:一條展示為一行
graph:圖形化展示
git remote #檢視配置的遠端提交資訊(只有名稱)
git remote -v # 檢視配置的遠端提交資訊(可以看到fetch/push的url)
git remote add 【遠端代號】【路徑】 # 配置新的遠端提交路徑
# git remote add origin1 ssh:
git remote rename 【原代號】 【新代號】 # 重新命名遠端提交的代號
# git remote rename origin1 origin2
git remote remove 【代號】#刪除遠端提交的路徑
# git remote remove origin2
git remote get-url【代號】# 檢視指定代號提交的url
git push 【遠端代號】【分支名】-u # 將本地更新推送到遠端倉庫
git branch # 檢視本地的所有分支
git branch 【分支名】 #建立新分支
git branch -c 【原分支】 【新分支】 # 從乙個分支建立新分支
git branch -d 【分支名】 # 刪除分支
git checkout 【分支名】 #切換分支
git merge【分支名】 #將指定分支合併到當前分支
今天的分享就到這裡了,自己的收穫還是蠻大的
學無止境,諸君共勉
一些專案管理心得
最近負責的市政數字報建專案快結束了,記下一些心得 對於中小型專案,最好不要使用常規的軟體工程方法進行開發。建議前期採用迭代開發,後期採用測試驅動開發。專案一開始,就要搭好以下文件的框架,隨專案進行中,不斷修改 補充和完善。1 需求規格說明書 甲方負責。詳細記錄整個專案的需求。特別是專案過程中,一些需...
AIX方面的一些資源
常用aix論壇位址介紹 aix論壇 http loveunix.style images 1 logo4.gif img url 愛u家園 是大家的快樂空間 aix使用者論壇 chinaunix的aix論壇 aix中國論壇 思達奇公司的aix 技術區 itpub的unix論壇 銀信公司 aix練習 ...
一些語言方面的技巧
1.數字轉string int x string id stringstream ss ss id 2.字串轉數字 int num string s stringstream ss s ss num char str sscanf str,d num 將字串轉換成整數 sscanf str,f fl...