Last active
August 28, 2021 16:30
-
-
Save jvloo/8a7617673ce38b19e3fe3b2c632cf6ac to your computer and use it in GitHub Desktop.
Revisions
-
Xavier Loo revised this gist
Aug 28, 2021 . 1 changed file with 2 additions and 4 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,5 @@ - Error: The following untracked working tree files would be overwritten by merge. Please move or remove them before you merge. - Solution: Track all files, remove all of the local changes to those files, and then get the files from the remote origin. (https://stackoverflow.com/a/26639255/11690179) ``` git add * -
Xavier Loo renamed this gist
Aug 28, 2021 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Xavier Loo created this gist
Aug 28, 2021 .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,10 @@ Track all files, remove all of the local changes to those files, and then get the files from the remote origin. https://stackoverflow.com/a/26639255/11690179 ``` git add * git stash git pull ```