에버노트 개인 서비스 등급이 2018년 4월 경 기존 베이직(무료) - 플러스(월 3000원) - 프리미엄(월 6000원) 등급에서 베이직(무료) - 프리미엄(월 6000원)으로 플러스가 폐지가 되었습니다. 플러스 등급만으로도 충분히 사용할 수 있었는데 선택지가 프리미엄밖에 업게 되니 부담스럽더라고요.
그래서 우회 결제로 에버노트를 한달에 약 550원 정도로 저렴하게 사용할 수 있는 방법을 소개합니다.
필요 프로그램은구글 크롬 + Hola VPN 확장프로그램이 필요합니다.
에버노트 우회 결제 방법
국가 우회를 하기 위해 구글 크롬 확장프로그램인 Hola VPN 을 설치하기 위해 크롬 웹 스토어에 접속합니다.
Note if you want everyone to be able to modify the repository, you don't need the chgrp and you will want to change the chmod to sudo chmod -R a+rwX .
If you do not fix the underlying cause, the error will keep coming back and you'll have to keep re-running the above commands over and over again.
Underlying Causes
The error could be caused by one of the following:
The repository isn't configured to be a shared repository (see core.sharedRepository in git help config). If the output of:
git config core.sharedRepository
is not group or true or 1 or some mask, try running:
git config core.sharedRepository group
and then re-run the recursive chmod and chgrp (see "Repair Permissions" above).
The operating system doesn't interpret a setgid bit on directories as "all new files and subdirectories should inherit the group owner".
When core.sharedRepository is true or group, Git relies on a feature of GNU operating systems (e.g., every Linux distribution) to ensure that newly created subdirectories are owned by the correct group (the group that all of the repository's users are in). This feature is documented in the GNU coreutils documentation:
... [If] a directory's set-group-ID bit is set, newly created subfiles inherit the same group as the directory, and newly created subdirectories inherit the set-group-ID bit of the parent directory. ... [This mechanism lets] users share files more easily, by lessening the need to use chmod or chown to share new files.
해결방법 2.
난 이게 더 심플한거 같기도.
For Ubuntu (or any Linux)
From project root,
cd .git/objects
ls -al
sudo chown -R yourname:yourgroup *
You can tell what yourname and yourgroup should be by looking at the permissions on the majority of the output from that ls -al command
Note: remember the star at the end of the sudo line