ฉันมีปัญหาแปลก ๆ ที่ดูเหมือนจะแก้ไขไม่ได้ นี่คือสิ่งที่เกิดขึ้น:
ฉันมีไฟล์บันทึกบางไฟล์ในที่เก็บ github ซึ่งฉันไม่ต้องการที่นั่น ฉันพบสคริปต์นี้ที่ลบไฟล์ทั้งหมดออกจากประวัติคอมไพล์ดังนี้:
#!/bin/bash
set -o errexit
# Author: David Underhill
# Script to permanently delete files/folders from your git repository. To use
# it, cd to your repository's root and then run the script with a list of paths
# you want to delete, e.g., git-delete-history path1 path2
if [ $# -eq 0 ]; then
exit 0are still
fi
# make sure we're at the root of git repo
if [ ! -d .git ]; then
echo "Error: must run this script from the root of a git repository"
exit 1
fi
# remove all paths passed as arguments from the history of the repo
files=$@
git filter-branch --index-filter "git rm -rf --cached --ignore-unmatch $files" HEAD
# remove the temporary history git-filter-branch otherwise leaves behind for a long time
rm -rf .git/refs/original/ && git reflog expire --all && git gc --aggressive --prune
แน่นอนฉันได้ทำการสำรองข้อมูลก่อนแล้วจึงลองใช้ ดูเหมือนว่ามันจะทำงานได้ดี. จากนั้นฉันก็ทำการ git push -f และได้รับการต้อนรับด้วยข้อความต่อไปนี้:
error: Unable to append to .git/logs/refs/remotes/origin/master: Permission denied
error: Cannot update the ref 'refs/remotes/origin/master'.
ดูเหมือนว่าทุกอย่างจะดำเนินไปได้ด้วยดีเพราะดูเหมือนว่าไฟล์จะหายไปจากที่เก็บ GitHub ถ้าฉันพยายามผลักดันอีกครั้งฉันจะได้รับสิ่งเดียวกัน:
error: Unable to append to .git/logs/refs/remotes/origin/master: Permission denied
error: Cannot update the ref 'refs/remotes/origin/master'.
Everything up-to-date
แก้ไข
$ sudo chgrp {user} .git/logs/refs/remotes/origin/master
$ sudo chown {user} .git/logs/refs/remotes/origin/master
$ git push
Everything up-to-date
ขอบคุณ!
แก้ไข
เอ่อโอ้. ปัญหา. ฉันทำงานในโครงการนี้มาตลอดทั้งคืนและเพิ่งจะทำการเปลี่ยนแปลง:
error: Unable to append to .git/logs/refs/heads/master: Permission denied
fatal: cannot update HEAD ref
ดังนั้นฉัน:
sudo chown {user} .git/logs/refs/heads/master
sudo chgrp {user} .git/logs/refs/heads/master
ฉันลองกระทำอีกครั้งและได้รับ:
error: Unable to append to .git/logs/HEAD: Permission denied
fatal: cannot update HEAD ref
ดังนั้นฉัน:
sudo chown {user} .git/logs/HEAD
sudo chgrp {user} .git/logs/HEAD
จากนั้นฉันก็ลองกระทำอีกครั้ง:
16 files changed, 499 insertions(+), 284 deletions(-)
create mode 100644 logs/DBerrors.xsl
delete mode 100644 logs/emptyPHPerrors.php
create mode 100644 logs/trimXMLerrors.php
rewrite public/codeCore/Classes/php/DatabaseConnection.php (77%)
create mode 100644 public/codeSite/php/init.php
$ git push
Counting objects: 49, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (27/27), done.
Writing objects: 100% (27/27), 7.72 KiB, done.
Total 27 (delta 15), reused 0 (delta 0)
To git@github.com:IAmCorbin/MooKit.git
59da24e..68b6397 master -> master
ไชโย ฉันไปที่http://GitHub.comและตรวจสอบที่เก็บข้อมูลและการกระทำล่าสุดของฉันไม่พบที่ใด :: เกาหัว :: ก็เลยดันอีก:
Everything up-to-date
อืม ... ดูไม่เป็นเลย ฉันไม่เคยมีปัญหานี้มาก่อนนี่อาจเป็นปัญหากับ github หรือไม่? หรือฉันทำอะไรบางอย่างกับโครงการคอมไพล์ของฉัน
แก้ไข
ไม่เป็นไรฉันทำง่ายๆ:
git push origin master
และมันก็ทำได้ดี