github發布版本後再pacakgist能拉取到需要發布版本
本地
mac@macdemacbook-pro:/www/tool$ git add .mac@macdemacbook-pro:/www/tool$ git commit -m 'test'
[master dc1bf10] test
6 files changed, 29 insertions(+), 8 deletions(-)
mode change 100644 => 100755 .gitignore
mode change 100644 => 100755 composer.json
mode change 100644 => 100755 index.php
rename src (89%)
mode change 100644 => 100755
mode change 100644 => 100755 src/redis.php
mode change 100644 => 100755 test.php
mac@macdemacbook-pro:/www/tool$ git push origin master
counting objects: 7, done.
delta compression using up to 8 threads.
compressing objects: 100% (7/7), done.
writing objects: 100% (7/7), 959 bytes | 959.00 kib/s, done.
total 7 (delta 1), reused 0 (delta 0)
remote: resolving deltas: 100% (1/1), completed with 1 local object.
to github.com:brady-wang/tool.git
16cd720..dc1bf10 master -> master
mac@macdemacbook-pro:/www/tool$ git tag -a v1.5 -m '發布我的第五個版本'
mac@macdemacbook-pro:/www/tool$ git push origin v1.5
counting objects: 1, done.
writing objects: 100% (1/1), 186 bytes | 186.00 kib/s, done.
total 1 (delta 0), reused 0 (delta 0)
to github.com:brady-wang/tool.git
* [new tag] v1.5 -> v1.5
mac@macdemacbook-pro:/www/tool$
進入github專案裡面
reases 點選
點選tags
點選要發布的對應的tag最右邊 選擇 create rease
點選發布
# 建立附註標籤
$ git tag -a v0.1.2 -m 「0.1.2版本」
列出標籤
$ git tag # 在控制台列印出當前倉庫的所有標籤
$ git tag -l 『v0.1.*』 # 搜尋符合模式的標籤
git push並不會把tag標籤傳送到遠端伺服器上,只有通過顯式命令才能分享標籤到遠端倉庫。
1.push單個tag,命令格式為:git push origin [tagname]
例如:git push origin v1.0 #將本地v1.0的tag推送到遠端伺服器
2.push所有tag,命令格式為:git push [origin] --tags
例如:git push --tags
或git push origin --tags
# 建立附註標籤
$ git tag -a v0.1.2 -m 「0.1.2版本」
列出標籤
$ git tag # 在控制台列印出當前倉庫的所有標籤
$ git tag -l 『v0.1.*』 # 搜尋符合模式的標籤
git push並不會把tag標籤傳送到遠端伺服器上,只有通過顯式命令才能分享標籤到遠端倉庫。
1.push單個tag,命令格式為:git push origin [tagname]
例如:git push origin v1.0 #將本地v1.0的tag推送到遠端伺服器
2.push所有tag,命令格式為:git push [origin] --tags
例如:git push --tags
或git push origin --tags
github版本控制
以前工作的時候所有的軟體採用p4v軟體進行版本控制,p4企業版功能之強大令人嘆服,剛工作的時候,大部分時間都用來熟悉這個軟體了。換了工作環境了,現在的軟體多是使用一種 入庫 的方式,乙個版本儲存一次,次數多了,哪個版本什麼功能,或者做了什麼修改搞都搞不清楚。有鑑於此,想到了torvalds的git版...
GitHub專案的發布
剛開始認為這不好操作,但做過賬戶幾遍後就熟練了,做程式設計要多動手實際操作。具體操作請參考 當在git bash here中出現please tell me who you are時,如圖 提示也就是需要你登入一下,確認你的身份,但是不要按照其提示輸入,先輸入命令git config user.na...
Beta 版本發布
學號 姓名 201731041215 王陽201731062302 鮮雨珂201731062128 鄧捷201731062305 周蓉201731062131 龍繼平201731062304 楊夢欣201731035120 張欣201731062301 梅晨1.完成了排行榜頁面的編寫以及資料的互動 ...