qg 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. #!/bin/sh
  2. extract()
  3. {
  4. filenums=`echo $cmds | awk -v idx=$1 '{
  5. split($0, a, " ");
  6. list = "";
  7. for(v in a) {
  8. if(v > idx) {
  9. if(a[v] ~ /[0-9]/ || a[v] ~ "-" || a[v] ~ ",") {
  10. list = list a[v];
  11. }
  12. }
  13. }
  14. split(list, arr, ",");
  15. final="";
  16. for(i in arr) {
  17. if(arr[i] ~ "-") {
  18. split(arr[i], inner, "-");
  19. for(k = inner[1]; k <= inner[2]; k++) {
  20. final=final "," k;
  21. }
  22. } else {
  23. final=final "," arr[i]
  24. }
  25. }
  26. printf("%s", substr(final, 2));
  27. }'`
  28. }
  29. removetemp()
  30. {
  31. rm /tmp/.gt-temp* > /dev/null 2>&1
  32. }
  33. status()
  34. {
  35. cmd=`git status 2>&1 | tee /tmp/.gt-temp.txt`
  36. awk '
  37. BEGIN {
  38. num = 0;
  39. }
  40. $0 ~ "Untracked" {
  41. untracked = 1
  42. committed = 0;
  43. notcommitted = 0;
  44. first = 1;
  45. }
  46. $0 ~ "Changes not" {
  47. untracked = 0;
  48. committed = 0;
  49. notcommitted = 1;
  50. first = 1;
  51. }
  52. $0 ~ "Changes to" {
  53. untracked = 0;
  54. committed = 1;
  55. notcommitted = 0;
  56. first = 1;
  57. }
  58. {
  59. if($0 ~ "use \"git " || first) {
  60. printf("\033[38m%s\033[0m\n", $0);
  61. first = 0;
  62. } else if($0 ~ ".gt-temp") {
  63. } else if(committed && $0 ~ /[^\s\\]/) {
  64. num++;
  65. printf("\033[1m%d\033[0m.\033[32m%s\033[0m\n", num, $0)
  66. } else if((untracked || notcommitted) && $0 ~ /[^\s\\]/) {
  67. num++;
  68. printf("\033[1m%d\033[0m.\033[31m%s\033[0m\n", num, $0)
  69. } else
  70. printf("\033[38m%s\033[0m\n", $0)
  71. }' /tmp/.gt-temp.txt > /tmp/.gt-temp1.txt
  72. if test $1 = 1; then
  73. cat /tmp/.gt-temp1.txt
  74. rm /tmp/.gt-temp1.txt
  75. else
  76. awk '{ gsub("\x1B[(([0-9]{1,2})?(;)?([0-9]{1,2})?)?[m,K,H,f,J]", ""); print $0 }' /tmp/.gt-temp1.txt > /tmp/.gt-temp2.txt
  77. cat /tmp/.gt-temp2.txt > /tmp/.gt-temp1.txt
  78. rm /tmp/.gt-temp2.txt
  79. fi
  80. }
  81. # TODO: work with file names and paths
  82. make_file_list()
  83. {
  84. files=`awk -v t=$1 -v arg=$2 '
  85. BEGIN {
  86. split(arg, nums, ",");
  87. ff = 0;
  88. }
  89. {
  90. if($0 ~ "--staged" && ff == 0 && t == "restore") {
  91. printf("--staged ");
  92. }
  93. if($1 ~ /[\.]/) {
  94. for(i in nums) {
  95. withp = nums[i]"."
  96. if(withp == $1) {
  97. printf("%s ", $NF);
  98. ff++;
  99. }
  100. }
  101. }
  102. }
  103. ' /tmp/.gt-temp1.txt`
  104. }
  105. if test "$1" = ""; then
  106. status 1
  107. removetemp
  108. exit 1
  109. fi
  110. cmds=`echo $1 | sed 's/\(.\)/\1 /g'`
  111. shift
  112. IN_STASH=0
  113. i=0
  114. echo "$cmds" | tr ' ' '\n' | while read c;
  115. do
  116. i=${i+1}
  117. case $c in
  118. a)
  119. next=`echo $cmds | cut -d\ -f${i+2}`
  120. if test "$next" = "."; then
  121. removetemp
  122. git add .
  123. elif test "$next" = "a"; then
  124. git add $@
  125. else
  126. status 0
  127. extract $i
  128. make_file_list "add" $filenums
  129. git add $files
  130. removetemp
  131. fi
  132. ;;
  133. s)
  134. if test $IN_STASH = 1; then
  135. git stash show $@
  136. else
  137. status 1
  138. fi
  139. ;;
  140. S)
  141. next=`echo $cmds | cut -d\ -f${i+2}`
  142. if test $IN_STASH = 1; then
  143. git stash save $@
  144. elif test "$next" = "S"; then
  145. git stash
  146. else
  147. IN_STASH=1
  148. fi
  149. ;;
  150. p)
  151. if test $IN_STASH = 1; then
  152. git stash pop $@
  153. else
  154. git pull
  155. fi
  156. ;;
  157. P)
  158. cmd=`git push 2>&1 | tee /tmp/.gt-temp.txt | awk '$0 ~ "git push --set-upstream" { print $0 }'`
  159. if test "$cmd" = ""; then
  160. cat /tmp/.gt-temp.txt
  161. rm /tmp/.gt-temp.txt
  162. exit 0
  163. else
  164. echo "Running: ${cmd}"
  165. removetemp
  166. eval $cmd
  167. exit 0
  168. fi
  169. ;;
  170. c)
  171. if test $IN_STASH = 1; then
  172. git stash clear $@
  173. else
  174. git commit
  175. fi
  176. ;;
  177. C)
  178. git checkout $1
  179. shift
  180. ;;
  181. l)
  182. if test $IN_STASH = 1; then
  183. git stash list $@
  184. else
  185. git log
  186. fi
  187. ;;
  188. M)
  189. git merge $1
  190. shift
  191. ;;
  192. b)
  193. if test $IN_STASH = 1; then
  194. git stash branch $@
  195. else
  196. git branch $1
  197. shift
  198. fi
  199. ;;
  200. d)
  201. if test $IN_STASH = 1; then
  202. git stash drop $@
  203. else
  204. git diff $1
  205. fi
  206. ;;
  207. r)
  208. status 0
  209. extract $i
  210. make_file_list "restore" $filenums
  211. git restore $files
  212. status 1
  213. ;;
  214. R)
  215. next=`echo $cmds | cut -d\ -f${i+2}`
  216. if test "$next" = ""; then
  217. removetemp
  218. git rm $@
  219. else
  220. status 0
  221. extract $i
  222. make_file_list "add" $filenums
  223. git rm $files
  224. removetemp
  225. fi
  226. ;;
  227. g)
  228. git grep -n "$1"
  229. ;;
  230. q)
  231. break
  232. ;;
  233. *)
  234. ;;
  235. esac
  236. done
  237. exit 0