GitXplorerGitXplorer
s

is-everything-pushed

public
3 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
443bf01f7404bc759caec662779e8178c3b3a51d

Migrate to Github workflow

ssimeg committed 4 years ago
Unverified
a89e6c636deb174d85dbb727fdeb6a18f6859769

Code cleanup

ssimeg committed 4 years ago
Verified
68c2ff1e7baeb162f2710d5872e41b6bbc2241ff

Add CI badge to README

ssimeg committed 5 years ago
Verified
05ce6a07832a8490f4a8959c37d09b5dee73937f

Merge pull request #1 from simeg/travis

ssimeg committed 5 years ago
Unverified
52f2ff34b2eccf06535494ecf7e297e571f52814

Make script executable

ssimeg committed 5 years ago
Unverified
bc6727c85ca9fc4b6928d8a5c98dd479042184d7

Enable Travis CI

ssimeg committed 5 years ago

README

The README file for this repository.

is-everything-pushed CI

A bash script to make sure everything in your Git repository folder is pushed.

Usage

$ sh ./is-everything-pushed.sh /path/to/repos/parent/folder

This scripts assumes you have all your Git repositories in the same parent-folder.

.
├── repo-1
├── repo-2
├── repo-3
└── ...

Example Output

When you have unpushed changes:

🙈  Unpushed changes in	/Users/simon/repos/dotfiles/
🙈  Unpushed changes in	/Users/simon/repos/lazy-reading/

When you don't have any unpushed changes:

No unpushed changes! All is good 👌

Quick Usage

curl the script and execute it. Just make sure to replace [REPO FOLDER] with an absolute path to your repo folder.

$ /bin/bash <(curl -s https://raw.githubusercontent.com/simeg/is-everything-pushed/master/is-everything-pushed.sh) [REPO FOLDER]