Why is Git converting $$
to 36415
when I run 'git checkout -b $$'
? It works fine when I use just one dollar sign.
Asked
Active
Viewed 28 times
0

clever_trevor
- 1,530
- 2
- 22
- 42
-
5*Git* isn't. Your *shell* is doing that. Try `echo $$`, `wc $$`, `printf "I said $$\n"`, and so on. – torek Aug 26 '19 at 23:12
-
I see what you mean! I got the same result in terminal. Thanks for the quick response. – clever_trevor Aug 26 '19 at 23:14
-
1https://stackoverflow.com/search?q=%5Bshell%5D+double+dollar – phd Aug 26 '19 at 23:15