How to automatically push after committing in git? How to automatically push after committing in git? git git

How to automatically push after committing in git?


First, make sure that you can push manually without providing your password. If you are pushing over HTTP or HTTPS, that will be a case of either creating a .netrc file with the login details or adding your username and password into the URL for the remote. If you're using SSH, you can either create a keypair where the private key doesn't have a password, or use ssh-agent to cache your private key.

Then you should create an executable (chmod +x) file in .git/hooks/post-commit that contains the following:

#!/bin/shgit push origin master

... customizing that line if you want to push to a remote other than origin, or push a branch other than master. Make sure that you make that file executable.


If you start using more than the master branch, you might want to automatically push the current branch. My hook (.git/hooks/post-commit) looks like this:

#!/usr/bin/env bashbranch_name=$(git symbolic-ref --short HEAD)retcode=$?non_push_suffix="_local"# Only push if branch_name was found (my be empty if in detached head state)if [ $retcode -eq 0 ] ; then    #Only push if branch_name does not end with the non-push suffix    if [[ $branch_name != *$non_push_suffix ]] ; then        echo        echo "**** Pushing current branch $branch_name to origin [i4h post-commit hook]"        echo        git push origin $branch_name;    fifi

It pushes the current branch, if it can determine the branch name with git symbolic-ref.

"How to get current branch name in Git?" deals with this and other ways to get the current branch name.

An automatic push for every branch can be disturbing when working in task branches where you expect some sausage making to happen (you won't be able to rebase easily after pushing). So the hook will not push branches that end with a defined suffix (in the example "_local").


Create a file named "post-commit" in the .git/hooks directory with the contents "git push", though if you want to automatically provide a password, so modification will be needed.