Skip to content

Commit

Permalink
- Add instructions to manually push git repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankyrumple committed Jul 8, 2024
1 parent 8d89fbd commit b650cc1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Troubleshooting/Manually Push Updates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

(Go to server sync binaries folder -> bin - Click git-cmd.exe to open a git command prompt)

(Do "dir" command - should show you in the same folder - git-cmd.exe should be present)

(Change folder to the proper repo)
cd ../volumes/repos/ope_laptop_binaries.git

(Check the list of remotes)
git remote -v

(You are looking for ope_laptop_binaries_ope_offline - if it points to the IP of the SMC server, skip to PUSH)
ope_laptop_binaries_ope_offline ssh://[email protected]:/ope/volumes/smc/git/ope_laptop_binaries.git (fetch)

(To remove an incorrect remote)
git remote remove ope_laptop_binaries_ope_offline

(To re-add it with correct info -- UPDATE IP ADDRESS FOR YOUR OPE SERVER)
git remote add ope_laptop_binaries_ope_offline ssh://[email protected]:/ope/volumes/smc/git/ope_laptop_binaries.git

(PUSH)
(Send the master branch to the remote smc/ope server)
git push ope_laptop_binaries_ope_offline master

0 comments on commit b650cc1

Please sign in to comment.