https://github.com/mdibyo/git-sync
https://github.com/mdibyo/git-sync
git inotifywait remote synchronization
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mdibyo/git-sync
- Owner: mDibyo
- Created: 2017-04-08T23:25:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-26T07:19:49.000Z (over 6 years ago)
- Last Synced: 2025-01-01T15:25:14.512Z (5 months ago)
- Topics: git, inotifywait, remote, synchronization
- Language: Shell
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Git Synchronizer
================Git Synchronizer allows you to sync local changes with a remote repository
as a Work in progress commit, capping off the remote version of the current
local branch. Synchronization happens on file save(!!!)It is meant for testing changes when a local server can not be
run and a remote server is serving the contents of the git repository
remotely.### Usage
On Unix machines, install by running `./install.sh`. (This installs git-sync in
`/usr/local/bin`. )Then run `git-sync` (or `path/to/git-sync/git-sync` if not installed) in the root
directory of the repository to be synced.The remote branch corresponding to the local branch must be configured beforehand
with
`git branch --set-upstream-to {remote}/{remote_branch_name} {local_branch_name}`.