armmer (owner)

Revisions

gist: 207361 Download_button fork
public
Public Clone URL: git://gist.github.com/207361.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#make sure everything is committed
git checkout -b temp
# now on temp branch
 
# delete master branch
git branch -D master
 
#create master branch from origin/master
git branch master origin/master
 
# checkout master
git checkout master
 
# squash temp into master
git merge --squash . temp
 
# add new files/changes
git add <file_name>, etc
 
# commit and push
git commit -m "comments, etc"
git push origin master