Last active
July 6, 2024 21:37
-
-
Save heridev/244e75dbe2e21430b093d7c6ee4f8b4b to your computer and use it in GitHub Desktop.
Revisions
-
heridev revised this gist
Jul 6, 2024 . No changes.There are no files selected for viewing
-
heridev revised this gist
Jul 6, 2024 . 1 changed file with 5 additions and 0 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 @@ -0,0 +1,5 @@ * (HEAD -> master) Add feature-two.txt * Feature two: change in file.txt * Add feature-one.txt * Feature one: change in file.txt * Previous commits on master... -
heridev revised this gist
Jul 6, 2024 . 1 changed file with 3 additions and 0 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 @@ -0,0 +1,3 @@ # Edit file.txt to resolve the conflict git add file.txt git rebase --continue -
heridev revised this gist
Jul 6, 2024 . 1 changed file with 1 addition and 0 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 @@ -0,0 +1 @@ git rebase feature-two -
heridev revised this gist
Jul 6, 2024 . 1 changed file with 3 additions and 0 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 @@ -0,0 +1,3 @@ * (HEAD -> master) Add feature-one.txt * Feature one: change in file.txt * Previous commits on master... -
heridev revised this gist
Jul 6, 2024 . 1 changed file with 2 additions and 0 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 @@ -0,0 +1,2 @@ git checkout master git rebase feature-one -
heridev revised this gist
Jul 6, 2024 . 1 changed file with 7 additions and 0 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 @@ -0,0 +1,7 @@ git checkout feature-two echo "Change in feature-two" >> file.txt git add file.txt git commit -m "Feature two: change in file.txt" echo "This is feature-two.txt" > feature-two.txt git add feature-two.txt git commit -m "Add feature-two.txt" -
heridev renamed this gist
Jul 6, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
heridev revised this gist
Jul 6, 2024 . 1 changed file with 7 additions and 0 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 @@ -0,0 +1,7 @@ git checkout feature-one echo "Change in feature-one" >> file.txt git add file.txt git commit -m "Feature one: change in file.txt" echo "This is feature-one.txt" > feature-one.txt git add feature-one.txt git commit -m "Add feature-one.txt" -
heridev renamed this gist
Jul 6, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
heridev renamed this gist
Jul 6, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
heridev renamed this gist
Jul 6, 2024 . 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 @@ -1,3 +1,3 @@ git checkout master git branch feature-one git branch feature-two -
heridev renamed this gist
Jul 6, 2024 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
heridev created this gist
Jul 6, 2024 .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,3 @@ git checkout master git branch feature-one git branch feature-two