Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 515 Bytes

SYNC.md

File metadata and controls

29 lines (25 loc) · 515 Bytes

Sync with main repo

Add remote 'upstream'

git remote add upstream https://github.com/int128/httpstub.git

Update a forked repo with main

git fetch upstream
git rebase upstream/master
git push origin master --force

Push

Due github disable password authentification we need to use token

git remote remove origin
git remote add origin https://[TOKEN]@github.com/gleb619/httpstub.git

Push changes

git push

Change author origin

git config --local user.email <user email>