Last active
September 27, 2023 09:35
-
-
Save jordanst3wart/f07d78217f18d0d70b91bfb349964224 to your computer and use it in GitHub Desktop.
Revisions
-
jordanst3wart revised this gist
Sep 27, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ [alias] squash = "!f(){ git reset --soft $(git merge-base master $(git branch --show-current)) && git commit -m \"${1}\";};f" update = "!f(){ git checkout master && git pull && git checkout $(git branch --show-current) && git rebase;};f" [push] autoSetupRemote = true [pull] -
jordanst3wart revised this gist
Sep 27, 2023 . No changes.There are no files selected for viewing
-
jordanst3wart revised this gist
Sep 27, 2023 . No changes.There are no files selected for viewing
-
jordanst3wart revised this gist
Sep 27, 2023 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ [user] name = fill me email = fill@example.com [alias] squash = "!f(){ git reset --soft $(git merge-base master $(git branch --show-current)) && git commit -m \"${1}\";};f" -
jordanst3wart revised this gist
Sep 27, 2023 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,5 +4,8 @@ [alias] squash = "!f(){ git reset --soft $(git merge-base master $(git branch --show-current)) && git commit -m \"${1}\";};f" update = "git checkout master && git pull && git checkout $(git branch --show-current) && git rebase" [push] autoSetupRemote = true [pull] rebase = true -
jordanst3wart revised this gist
Jul 18, 2023 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,8 @@ [user] name = Jordan Stewart email = jordan@propcode.com.au [alias] squash = "!f(){ git reset --soft $(git merge-base master $(git branch --show-current)) && git commit -m \"${1}\";};f" [push] autoSetupRemote = true -
jordanst3wart created this gist
Jul 18, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ # This is Git's per-user configuration file. [user] name = Jordan Stewart email = redacted [alias] squash = "!f(){ git reset --soft $(git merge-base master $(git branch --show-current)) && git commit -m \"${1}\";};f"