我最近加入了一家新公司。他们在Github
上将我加入了他们组织的成员。 (我正在使用我的人事帐户)
从那时起,我再也无法推送到我的人事存储库了。
remote: Permission to *****/*******.github.io.git denied to pvp-***.
fatal: unable to access 'https://github.com/********/****.github.io.git/':
The requested URL returned error: 403
如何继续使用我的人事帐户推送我的存储库和我的组织的存储库?
答案 0 :(得分:0)
您需要检查Git在推送时如何缓存和使用您的凭据。
例如,对于Git for Windows,会使用Windows Credential Store(通过GCM: Git-Credential-Manager-for-Windows),这可能存储了不同的登录名/密码。
点击Git Credential Storage了解更多信息
检查@if( isset($documentID) )
<input type="text" name="document_id" value="{{ $documentID }}" hidden="true">
@else
<div class="form-group col-sm-6">
{!! Form::label('file_type', 'Document ID:') !!}
<select name="document_id" class="form-control">
@foreach( $documents as $document)
<option value="{{ $document->id }}">{{ $document->id }}-{{ $document->applicant()->name }}</option>
@endforeach
</select>
</div>
@endif
git config -l
配置。