dropboxignore: 실종된 사람들에 관한 거예요.dropboxignore 파일

7739 단어 bashshellclidropbox

"문제"


Dropbox에 대한 흔한 질문/요청은 Selective Sync을 사용하지 않은 상태에서 파일을 무시합니다.Dropbox는 최근에 introduced에서 특정 파일이나 폴더를 무시하는 기능을 지원합니다.비록 이 새로운 기능은 의미가 크지만 많은 사용자들이 [1, 2, 3, 4]가 이미

Glob (programming)
컴퓨터 프로그래밍에서 glob 모드는 파일 이름 집합을 어댑터로 지정합니다.예를 들어, Unix Bash shell 명령 mv*를 사용합니다.txt textfiles/이름이 .txt으로 끝나는 모든 파일을 현재 디렉터리에서 textfiles 디렉터리로 이동합니다.여기에 *은 하나의 어댑터로'임의의 문자열'을 대표하고 *.txt은 전역 모델이다.또 다른 흔히 볼 수 있는 어댑터는 물음표(?)로 문자를 대표한다.예컨대 mv?txt shorttextfiles/한 글자 뒤에 .txt이라는 이름의 모든 파일을 현재 디렉터리에서 shorttextfiles 디렉터리로 이동합니다.txt는 이름이 2글자와 .txt으로 구성된 모든 파일과 일치합니다.
View on Wikipedia.gitignore처럼다양한 유형의 reasons에 대해 Dropbox는 이런 기능을 실현할 의사가 없는 것 같다.

사방을 돌아다니다.



그래서 나는 실시하기로 결정했다

sp1thas / Dropbox 무시


실종된 사람들에 관한 얘기야.dropboxignore 파일입니다.


Dropbox 무시



모두 분실에 관한 .dropboxignore 파일입니다.
<a target="_blank" rel="noopener noreferrer" href="https://github.com/sp1thas/dropboxignore/workflows/Testing/badge.svg"><img src="https://github.com/sp1thas/dropboxignore/workflows/Testing/badge.svg" style="max-width: 100%;"></a>
<a target="_blank" rel="noopener noreferrer" href="https://github.com/sp1thas/dropboxignore/workflows/Shellcheck/badge.svg"><img src="https://github.com/sp1thas/dropboxignore/workflows/Shellcheck/badge.svg" style="max-width: 100%;"></a>
<a href="https://dropboxignore.readthedocs.io/en/latest/?badge=latest" rel="nofollow">
    <img src="https://camo.githubusercontent.com/e2e76ed8c62aa1969c7956a879cdafb85de5120a91e9adc74970ac08998a0f9c/68747470733a2f2f72656164746865646f63732e6f72672f70726f6a656374732f64726f70626f7869676e6f72652f62616467652f3f76657273696f6e3d6c6174657374" alt="Documentation Status" data-canonical-src="https://readthedocs.org/projects/dropboxignore/badge/?version=latest" style="max-width: 100%;">
</a>
<a href="https://snapcraft.io/dropboxignore" rel="nofollow">
    <img alt="dropboxignore" src="https://camo.githubusercontent.com/226213ae53b361a1de6b1021b5e74a1d772949d3022da2c2a4eba8521a68eb92/68747470733a2f2f736e617063726166742e696f2f64726f70626f7869676e6f72652f62616467652e737667" data-canonical-src="https://snapcraft.io/dropboxignore/badge.svg" style="max-width: 100%;">
</a>
<a target="_blank" rel="noopener noreferrer" href="https://camo.githubusercontent.com/a809edb0419372e5b894716844775503c12674d10b13d2d716af3d3bd53581c6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d676f6f676c652d253233343238354634"><img src="https://camo.githubusercontent.com/a809edb0419372e5b894716844775503c12674d10b13d2d716af3d3bd53581c6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d676f6f676c652d253233343238354634" data-canonical-src="https://img.shields.io/badge/code%20style-google-%234285F4" style="max-width: 100%;"></a>
전역 모드를 사용하여 dropbox에서 파일을 제거하고 기존 .gitignore 파일을 사용합니다.
이것은 간단한 셸 스크립트입니다.glob 모드, .dropboxignore 파일과 기존 .gitignorefiles에서dropbox의 파일을 무시할 수 있습니다.셸 스크립트는 일치하는 파일을 무시하기 위해 this 방법을 사용합니다.

특징.

  • .dropboxignore 파일의 전역 모드를 바탕으로 폴더나 파일을 무시합니다.
  • 은 기존 .dropboxignore 파일을 기반으로 .gitignore 파일을 자동으로 생성합니다.
  • 은 CLI를 통해 특정 폴더나 파일을 무시합니다.
  • 무시된 폴더 또는 파일 복원
  • 삭제 .dropboxignore 파일
  • 해당 .dropboxignore 파일에서 변경 사항이 감지되면
  • 파일은 .gitignore 파일로 업데이트됩니다.
  • 무시된 파일 및 폴더 목록
  • 개시하다


    기본 설치


    dropboxignore는 터미널에서 다음 명령 중 하나를 실행하여 설치합니다.curl, wget 또는 다른 유사한 도구를 사용하여 명령줄을 통해 설치할 수 있습니다.attrgit은 아마...
    View on GitHub
    이것은 glob 모드를 바탕으로 Dropbox의 파일을 무시하는 간단한 셸 스크립트입니다.또한 기존 .gitignore 파일을 사용하여 .dropboxignore 파일을 자동으로 생성할 수 있습니다.
    dropboxignore과 기타 관련 항목 간의 주요 차이점:

    로즈브 / Dropbox 무시


    이렇게 파일을 무시합니다.드롭박스 말고.


    스와파가발 / dropbox 무시


    🔥 .드롭박스 파이팅!


    리드와나톤 / dropbox 무시


    Dropbox의 파일과 폴더를 무시하는 데 도움을 주는 도구


    미찰카롤 / Dropbox 무시


    이 도구는 동기화 디렉터리를 감시하고 Dropbox 무시 경로를 설정합니다.Dropbox 무시


    무베로하 / 소홀히 하다


    Dropbox sync에서 파일과 폴더를 쉽게 무시할 수 있는 도구입니다.


    dropboxignore는 셸과 최저 요구 사항을 사용합니다(attr 패키지는 유일한 요구 사항입니다)
    dropboxignore은 현재 Mac 및 Linux에만 적용되며 다음과 같은 다양한 기능을 제공합니다.
  • 특정 파일 무시/복원
  • 자동 업데이트 .dropboxignore
  • 무시된 모든 파일 복원
  • .dropboxignore 파일의 변경 사항에 따라 .gitignore을 업데이트했습니다.
  • 너는 여기서 더 많은 용법 예시를 찾을 수 있다(https://github.com/sp1thas/dropboxignore#examples)

    dropboxignore 기대할 수 없는 일:

  • 은 자동으로 새 일치하는 파일을 무시합니다.
  • 새 파일을 만들고 .dropboxignore 파일과 일치하는 경우 일치하는 파일을 다시 무시해야 합니다.한 가지 일로 이 결점을 해결할 수 있다.
  • 자동 감지 .gitignore 파일의 삭제
  • 상응하는 .dropboxignore에 추가 모드가 추가되면 현재의 구현은 .gitignores 파일을 감지하고 업데이트할 수 있으나 같은 방식으로 삭제할 수 없습니다.

    좋은 웹페이지 즐겨찾기