You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

While collaboration, you may need to pull, commit, and push in CLI. Followings are bash scripts I use in my system.

Fetch all the source codes from the master repository

git_fetch.sh
#!/bin/bash
sudo -u apache git fetch --all
sudo -u apache git pull origin master


Commit codes in the current working directory

git_commit.sh
#!/bin/bash
echo Please input your commit message below \(blank to put as "bug fix"\)
read commit
sudo -u apache git pull
sudo -u apache git add .
if [ ! "$commit" ]; then
        sudo -u apache git commit -m "bug fix"
else
        sudo -u apache git commit -m "$commit"
fi
sudo -u apache git push
sudo -u apache git pull
  • No labels