Project

General

Profile

Common git operations » History » Version 7

Version 6 (cryptogopher, 2019-08-19 21:29) → Version 7/18 (cryptogopher, 2020-07-09 18:49)

h1. Common git operations

{{>toc}}

Prerequisites:
<pre>
cd ~/plugins/issue_recurring
</pre>

h2. Issue resolution in separate branch



h3. Create separate branch for issue

# Checkout and update master:
<pre>
$ git checkout master
$ git pull
</pre>
# Create, checkout new branch and push it to remote (so it will be tracked and replicated on it.michalczyk.pro):
<pre>
$ git checkout -b issueN
$ git push -u origin issueN
</pre>

h3. Reload all files open in vim:

<pre>
:bufdo! e

</pre>

h3. Merge issue branch into master

# Push uncommited changes on issue branch.
# Checkout and update master:
<pre>
$ git checkout master
$ git pull
</pre>
# Merge adding comment _closes #N_ and push issueN branch:
<pre>
$ git merge issueN
$ git push
</pre>
# Delete merged branch from local and remote:
<pre>
$ git branch -d issueN
$ git push origin :issueN
</pre>
# Verify:
<pre>
$ git branch -a
</pre>

h2. Release

h3. Move tag to different commit (e.g. after fixing some mistake)

# Remove tag from remote (if it has been pushed):
<pre>
git push origin :refs/tags/1.3
</pre>
# Force replacement of existing tag with one referencing most recent commit:
<pre>
git tag -fa 1.3
</pre>
# Push:
<pre>
git push origin 1.3
</pre>