几天前我从 GitHub 上拉了一个项目。从那以后我发现 GitHub 上有几个 fork,而我忽略了我最初使用的是哪一个。我如何确定我拉了哪些叉子?
26 回答
如果您只需要远程 URL,或者您没有连接到可以访问远程存储库的网络:
git config --get remote.origin.url
如果您需要完整输出并且您所在的网络可以访问源所在的远程存储库:
git remote show origin
使用git clone
(来自 GitHub 或任何源存储库)时,克隆源的默认名称是“origin”。使用git remote show
将显示有关此远程名称的信息。前几行应显示:
C:\Users\jaredpar\VsVim> git remote show origin
* remote origin
Fetch URL: git@github.com:jaredpar/VsVim.git
Push URL: git@github.com:jaredpar/VsVim.git
HEAD branch: master
Remote branches:
如果您想在脚本中使用该值,您将使用此答案中列出的第一个命令。
如果您希望将此用于脚本目的,您只能获取 URL
git config --get remote.origin.url
你可以试试:
git remote -v
它将打印所有遥控器的获取/推送 URL。
To get the answer:
git ls-remote --get-url [REMOTE]
This is better than reading the configuration; refer to the man page for git-ls-remote
:
--get-url
Expand the URL of the given remote repository taking into account any
"url.<base>.insteadOf"
config setting (Seegit-config(1)
) and exit without talking to the remote.
As pointed out by @Jefromi, this option was added in v1.7.5 and not documented until v1.7.12.2 (2012-09).
使用 Git 2.7(2015 年 1 月 5 日发布),您有一个更连贯的解决方案,使用git remote
:
git remote get-url origin
(漂亮的吊坠git remote set-url origin <newurl>
)
请参阅Ben Boeckel ( ) 的提交 96f78d3(2015 年 9 月 16 日)。(由Junio C Hamano 合并——在提交 e437cbd中,2015 年 10 月 5 日):mathstuf
gitster
远程:添加 get-url 子命令
扩展
insteadOf
是其中的一部分,ls-remote --url
也没有办法扩展pushInsteadOf
。
添加一个get-url
子命令,以便能够同时查询以及获取所有已配置 URL 的方法。
get-url:
检索远程的 URL。和的
配置在这里展开。 默认情况下,仅列出第一个 URL。insteadOf
pushInsteadOf
- 使用 '
--push
',查询推送 URL 而不是获取 URL。- 使用“
--all
”,将列出远程的所有 URL。
在 git 2.7 之前,你有:
git config --get remote.[REMOTE].url
git ls-remote --get-url [REMOTE]
git remote show [REMOTE]
总结起来,至少有四种方式:
使用官方 Linux 存储库进行尝试:
最少信息:
$ git config --get remote.origin.url
https://github.com/torvalds/linux.git
和
$ git ls-remote --get-url
https://github.com/torvalds/linux.git
更多信息:
$ git remote -v
origin https://github.com/torvalds/linux.git (fetch)
origin https://github.com/torvalds/linux.git (push)
更多信息:
$ git remote show origin
* remote origin
Fetch URL: https://github.com/torvalds/linux.git
Push URL: https://github.com/torvalds/linux.git
HEAD branch: master
Remote branch:
master tracked
Local branch configured for 'git pull':
master merges with remote master
Local ref configured for 'git push':
master pushes to master (up to date)
我想你可以在下面找到它.git/config
,remote["origin"]
如果你没有操纵它。
对我来说,这是更简单的方法(少打字):
$ git remote -v
origin https://github.com/torvalds/linux.git (fetch)
origin https://github.com/torvalds/linux.git (push)
实际上,我已经把它变成了一个alias
被调用s
的对象:
git remote -v
git status
您可以添加到您的个人资料:
alias s='git remote -v && git status'
简短的回答:
$ git remote show -n origin
或者,纯快速脚本的替代方案:
$ git config --get remote.origin.url
一些信息:
$ git remote -v
将打印所有遥控器(不是您想要的)。你想要起源对吗?$ git remote show origin
好多了,只显示origin
但时间太长(在 git 版本 1.8.1.msysgit.1 上测试)。
我最终得到:$ git remote show -n origin
,这似乎是最快的。使用-n
它不会获取远程头(AKA 分支)。你不需要那种类型的信息,对吧?
http://www.kernel.org/pub//software/scm/git/docs/git-remote.html
您可以应用| grep -i fetch
到所有三个版本以仅显示提取 URL。
如果您需要纯速度,请使用:
$ git config --get remote.origin.url
感谢@Jefromi指出这一点。
我永远记不住 Git 命令的所有参数,所以我只是在~/.gitconfig
文件中放了一个对我来说更有意义的别名,这样我就可以记住它,这样可以减少输入:
[alias]
url = ls-remote --get-url
重新加载终端后,您只需键入:
> git url
这里还有一些我经常使用的:
[alias]
cd = checkout
ls = branch
lsr = branch --remote
lst = describe --tags
我还强烈推荐git-extras,它有一个git info
命令,可以提供有关远程和本地分支的更详细信息。
我更喜欢这个,因为它更容易记住:
git config -l
它将列出所有有用的信息,例如:
user.name=Your Name
user.email=your.name@notexisting.com
core.autocrlf=input
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=https://github.com/mapstruct/mapstruct-examples
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.master.remote=origin
branch.master.merge=refs/heads/master
Git URL 将位于 Git 配置文件中。value 对应于 key url
。
对于 Mac 和 Linux,请使用以下命令:
cd project_dir
cat .git/config | grep url | awk '{print $3}'
对于 Windows,在任何文本编辑器中打开以下文件并找到 key 的值url
。
project_dir/.git/config
注意:即使您处于离线状态或远程 git 服务器已关闭,这也将起作用。
我基本上使用:
git remote get-url origin
它适用于 Windows 中的 Git Bash 命令控制台或 CMD 命令控制台。也就是说,它适用于 Git 2.x 版本。
git config --list
此命令将提供与您的存储库相关的所有信息。
上游的远程可能不被称为“起源”,所以这里有一个变体:
remote=$(git config --get branch.master.remote)
url=$(git config --get remote.$remote.url)
basename=$(basename "$url" .git)
echo $basename
或者:
basename $(git config --get remote.$(git config --get branch.master.remote).url) .git
对于更有用的变量,有:
$ git config -l
一个简单的方法是打开.git/config
文件:
cat .git/config
编辑:
vim .git/config
或者
nano .git/config
获取 IP 地址/主机名origin
对于ssh://
存储库:
git ls-remote --get-url origin | cut -f 2 -d @ | cut -f 1 -d "/"
对于git://
存储库:
git ls-remote --get-url origin | cut -f 2 -d @ | cut -f 1 -d ":"
补充其他答案:如果遥控器由于某种原因已更改,因此不反映原始来源,则 reflog 中的第一个条目(即 command 显示的最后一个条目git reflog
)应指示 repo 最初克隆的位置从。
例如
$ git reflog | tail -n 1
f34be46 HEAD@{0}: clone: from https://github.com/git/git
$
(请记住,reflog 可能会被清除,所以这不能保证有效。)
您使用 SSH 克隆克隆了您的存储库。
git config --get remote.origin.url
git@gitlab.com:company/product/production.git
但是您想获取 http url 以在浏览器中打开它或共享它:
git config --get remote.origin.url | sed -e 's/:/\//g'| sed -e 's/ssh\/\/\///g'| sed -e 's/git@/https:\/\//g'
https://gitlab.com/company/product/production.git
GitHub 或 GitLab 无关紧要。
git remote show origin
你必须在项目目录中。但是,如果您想从其他任何地方确定 URL,您可以使用:
cat <path2project>/.git/config | grep url
如果你经常需要这个命令,你可以在你的.bashrc
或.bash_profile
MacOS 中定义一个别名。
alias giturl='cat ./.git/config | grep url'
因此,您只需调用giturl
Git 根文件夹即可轻松获取其 URL。
如果你像这样扩展这个别名
alias giturl='cat .git/config | grep -i url | cut -d'=' -f 2'
你只得到没有前面的纯 URL
“网址=”
在
您在其使用中获得更多可能性:
例子
在 Mac 上,您可以调用open $(giturl)
以在标准浏览器中打开 URL。
或者chrome $(giturl)
在 Linux 上用 Chrome 浏览器打开它。
打印任意命名的远程获取 URL:
git remote -v | grep fetch | awk '{print $2}'
如果您不知道某个分支的上游远程名称,您可以首先通过检查当前分支所基于的上游分支名称来查找它。像这样使用git rev-parse
:
git rev-parse --symbolic-full-name --abbrev-ref @{upstream}
这表明上游分支是当前分支的源。可以对其进行解析以获取远程名称,如下所示:
git rev-parse --symbolic-full-name --abbrev-ref @{upstream} | cut -d / -f 1
现在将其通过管道传输到git ls-remote
,您将获得作为当前分支源的上游远程的 URL:
git ls-remote --get-url \
$(git rev-parse --symbolic-full-name --abbrev-ref @{upstream} | cut -d / -f 1)
现在应该注意,这不一定与克隆的源远程存储库相同。然而,在许多情况下,这就足够了。
要仅获取远程 URL:
git config --get remote.origin.url
要获取有关特定遥控器的更多详细信息,请使用
git remote show [remote-name] command
查看远程 URL
git remote show origin
查看您放置 .git 文件夹的位置
git config --get remote.origin.url
#!/bin/bash
git-remote-url() {
local rmt=$1; shift || { printf "Usage: git-remote-url [REMOTE]\n" >&2; return 1; }
local url
if ! git config --get remote.${rmt}.url &>/dev/null; then
printf "%s\n" "Error: not a valid remote name" && return 1
# Verify remote using 'git remote -v' command
fi
url=`git config --get remote.${rmt}.url`
# Parse remote if local clone used SSH checkout
[[ "$url" == git@* ]] \
&& { url="https://github.com/${url##*:}" >&2; }; \
{ url="${url%%.git}" >&2; };
printf "%s\n" "$url"
}
用法:
# Either launch a new terminal and copy `git-remote-url` into the current shell process,
# or create a shell script and add it to the PATH to enable command invocation with bash.
# Create a local clone of your repo with SSH, or HTTPS
git clone git@github.com:your-username/your-repository.git
cd your-repository
git-remote-url origin
输出:
https://github.com/your-username/your-repository
很简单,只需在放置 .git 文件夹的位置使用此命令
git config --get remote.origin.url
如果您已连接到网络
git remote show origin
它将向您显示最初克隆本地 Git 存储库的 URL。
希望这有帮助
alias git-repo="git config --get remote.origin.url | sed -e 's/:/\//g'| sed -e 's/ssh\/\/\///g'| sed -e 's/git@/https:\/\//g'"
alias git-pr="git config --get remote.origin.url | sed -e 's/:/\//g'| sed -e 's/ssh\/\/\///g'| sed -e 's/git@/https:\/\//g' | sed 's/....$//' | sed -ne 's/$/\/pulls &/p'"
将此表达式添加到主目录上的 .zshrc 或 .bashrcs
在你可以使用之后
git-repo
git-pr