我使用bcd-3A-yyyyMMdd
函数将.txt文件移动到父文件夹中的另一个子文件夹但我似乎无法取回它,只有通过文件资源管理器才能成功。我该怎么用来将它移动到以前的文件夹/父文件夹。我现在只能学习Git,你可以看到。
答案 0 :(得分:1)
您可以使用NameOfFolder
引用父文件夹。
导航至mv someName.txt ../someName.txt
并运行parentfolder $ mv file.txt subfolder/file.txt
parentfolder $ cd subfolder
subfolder $ ls
file.txt
subfolder $ mv file.txt ../file.txt
subfolder $ ls
// empty
subfolder $ cd ..
parentfolder $ ls
subfolder
file.txt
参见示例:
string input = "testeeeeeee";
string new_input = input.Substring(0, 1) + "@" + input.Substring(2, input.Length)
答案 1 :(得分:0)
如果在移动文件后没有进行任何提交并且您没有对存储库进行任何其他更改,请执行git重置
git reset --hard HEAD
或者你可以做到
git mv yourfile path/to/destination