克隆 Gist 但想重命名文件夹

Posted

技术标签:

【中文标题】克隆 Gist 但想重命名文件夹【英文标题】:Cloned Gist but want to rename folder 【发布时间】:2014-03-15 07:43:43 【问题描述】:

我通过拖动链接将 Gist 从 GitHub 克隆到我的桌面。

但是,文件夹名称是无法描述的长数字。

如何重命名文件夹,并且仍然能够继续从该文件夹提交更新到 GitHub 上的 Gist?

有可能吗?

【问题讨论】:

【参考方案1】:

只需重命名文件夹! git 不关心文件夹的名称,它只要求里面有一个.git-文件夹。1 你甚至可以提供要克隆的文件夹的名称到第二个参数中到 git 克隆:

git clone repository name-of-folder

另请参阅此 shell 脚本以了解 git 不关心名称:

[timwolla@/tmp]git clone https://gist.github.com/9028551.git
Cloning into '9028551'...
remote: Counting objects: 3, done.
remote: Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
Checking connectivity... done
[timwolla@/tmp]mv 9028551/ example-folder/
[timwolla@/tmp]cd example-folder/
[timwolla@/tmp/example-folder master]touch otherfile
[timwolla@/tmp/example-folder master]git add otherfile
[timwolla@/tmp/example-folder master]git commit -m "Add otherfile"
[master 5f80cf2] Add otherfile
 1 file changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 otherfile
[timwolla@/tmp/example-folder master]git push
Username for 'https://gist.github.com': timwolla
Password for 'https://timwolla@gist.github.com': 
Counting objects: 4, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 289 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://gist.github.com/9028551.git
   47890af..5f80cf2  master -> master

作为参考,这是要点:https://gist.github.com/TimWolla/9028551

1Technically don't even that

【讨论】:

我试过那个人 :( 但后来 github 抛出“失败的标头”消息 :( @Noit 你应该炫耀更多信息。 它有效,我不知道我2年前在做什么哈哈。谢谢蒂姆!

以上是关于克隆 Gist 但想重命名文件夹的主要内容,如果未能解决你的问题,请参考以下文章

三个 js - 你可以克隆从 collada 文件加载的动画吗?

git:重命名文件并更改文件内容

命令行批量重命名

重命名没有正确分配名称的文件

如何在Android中从文件路径重命名文件?

用于递归重命名文件夹的 Bash 脚本