Skip to content

Instantly share code, notes, and snippets.

@madeindra
Created July 9, 2020 16:10
Show Gist options
  • Save madeindra/85ed7ca4b2bceb35b40792238688a123 to your computer and use it in GitHub Desktop.
Save madeindra/85ed7ca4b2bceb35b40792238688a123 to your computer and use it in GitHub Desktop.
Updating Existing Signal Installation with New Code
  1. Open https://github.com/signalapp/Signal-Server

  2. Fork the repository to your own git Repo

  3. Copy the ssh (e.g. git@github.com:yourusername/Signal-Server.git)

  4. Open signal-server code in your editor (e.g. VSCode)

  5. Run the command in terminal (with your own ssh)

git remote add new_origin git@github.com:yourusername/Signal-Server.git
git pull new_origin  
git rebase new_origin/master
  1. There will be some conflict if you made any modification to the server, you need to solve it manually, there is no other way.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment