Git
howlowl
这个作者很懒,什么都没留下…
展开
-
Git 资料
__________2018.10.24_____________________ got 'fatal: branch 'master' does not exist' in git https://stackoverflow.com/questions/46915350/got-fatal-branch-master-does-not-exist-in-git You are...转载 2018-05-28 18:34:30 · 196 阅读 · 0 评论 -
Git
Dependency package.json (default) clone master branch git clone url (ending with .git) git branch -a see all the branches you see on github git checkout -b 02_01 origin/02_01 after clo...原创 2019-06-01 14:40:49 · 108 阅读 · 0 评论 -
Git - remove pushed file
If you deleted a file from the working tree, then commit the deletion: git commit -a -m "A file was deleted" And push your commit upstream: git push转载 2019-06-07 23:32:43 · 287 阅读 · 0 评论 -
sample of .gitignore file
# Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* .DS_Store # Runtime data pids *.pid *.seed *.pid.lock # Directory for instrumented libs generated by jscoverage/JSCover lib-cov # C...转载 2019-07-09 09:22:44 · 163 阅读 · 0 评论