https://github.com/webwizo/test
https://github.com/webwizo/test
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/webwizo/test
- Owner: webwizo
- Created: 2014-12-14T06:33:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-28T11:29:42.000Z (about 11 years ago)
- Last Synced: 2025-09-10T04:31:24.539Z (9 months ago)
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
local Git tag
-------------
git tag -d v1.0
## Delete a remote Git tag
git push origin :refs/tags/v1.0
## Delete a local Git branch
git branch -d branchName
## Delete a remote Git branch
git push origin :branchName
## Create branch via Tag
git checkout -b branchName tagName
git checkout -b version2 v2.0.0
## Merge a 'develop' branch into master?
git checkout master
git merge develop