-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add instructions to manually push git repo.
- Loading branch information
1 parent
8d89fbd
commit b650cc1
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 characters
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 | ||
|