Vincent Driessen | 61ade55 | 2010-01-21 01:28:08 +0100 | [diff] [blame] | 1 | #!/bin/sh |
Vincent Driessen | 093a147 | 2010-01-21 01:36:44 +0100 | [diff] [blame] | 2 | # |
| 3 | # gitflow -- A collection of Git wrapper scripts to provide high-level |
| 4 | # repository operations for Vincent Driessen's branching model: |
| 5 | # |
| 6 | # Original blog post presenting this model is found at: |
| 7 | # http://nvie.com/archives/323 |
| 8 | # |
| 9 | # Feel free to contribute to this project at: |
| 10 | # http://github.com/nvie/gitflow |
| 11 | # |
| 12 | # Copyright (c) 2010 by Vincent Driessen |
| 13 | # |
Vincent Driessen | 61ade55 | 2010-01-21 01:28:08 +0100 | [diff] [blame] | 14 | |
| 15 | gitflow_check_clean_working_tree() { |
| 16 | echo "Working tree $(pwd) clean." |
| 17 | } |
| 18 | |