From 8773193ca0ed8566f3be7d772f871ae0d71c83a8 Mon Sep 17 00:00:00 2001 From: risk danger olson Date: Tue, 15 Nov 2016 10:07:11 -0700 Subject: [PATCH] update other github/git-lfs references --- CHANGELOG.md | 12 +++---- CONTRIBUTING.md | 24 ++++++------- INSTALLING.md | 2 +- Makefile | 4 +-- README.md | 10 +++--- ROADMAP.md | 66 +++++++++++++++++----------------- api/http_lifecycle.go | 2 +- api/request_schema.go | 2 +- auth/credentials.go | 2 +- commands/command_init.go | 2 +- commands/command_uninit.go | 2 +- commands/commands.go | 2 +- debian/copyright | 2 +- debian/rules | 8 ++--- docs/man/git-lfs-config.5.ronn | 2 +- docs/proposals/locking_api.md | 4 +-- docs/spec.md | 6 ++-- glide.yaml | 2 +- rpm/INSTALL.md | 2 +- rpm/SPECS/git-lfs.spec | 2 +- script/backport-pr | 4 +-- script/build.go | 2 +- script/changelog | 2 +- script/release.go | 6 ++-- script/run | 2 +- test/README.md | 6 ++-- test/test-uninstall.sh | 2 +- 27 files changed, 91 insertions(+), 91 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b007b879..4ce0367563 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -129,7 +129,7 @@ requests run tests on macOS, Linux, and Windows. * Enhanced upload/download of LFS content: #1265 #1279 #1297 #1303 #1367 (@sinbad) * Resumable downloads using HTTP range headers * Resumable uploads using [tus.io protocol](http://tus.io) - * Pluggable [custom transfer adapters](https://github.com/github/git-lfs/blob/master/docs/custom-transfers.md) + * Pluggable [custom transfer adapters](https://github.com/git-lfs/git-lfs/blob/master/docs/custom-transfers.md) * In git 2.9+, run "git lfs pull" in submodules after "git lfs clone" #1373 (@sinbad) * cmd,doc,test: teach `git lfs track --{no-touch,verbose,dry-run}` #1344 (@ttaylorr) * ⏳ Retry transfers with expired actions #1350 (@ttaylorr) @@ -329,9 +329,9 @@ are updated. * Add `--all` option for download all objects from the server. #633 (@sinbad) * Fix error handling while `git update-index` is running. #570 (@rubyist) -See [git-lfs-fetch(1)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git-lfs-fetch.1.ronn), -[git-lfs-checkout(1)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git-lfs-checkout.1.ronn), -and [git-lfs-pull(1)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git-lfs-pull.1.ronn) +See [git-lfs-fetch(1)](https://github.com/git-lfs/git-lfs/blob/v0.6.0/docs/man/git-lfs-fetch.1.ronn), +[git-lfs-checkout(1)](https://github.com/git-lfs/git-lfs/blob/v0.6.0/docs/man/git-lfs-checkout.1.ronn), +and [git-lfs-pull(1)](https://github.com/git-lfs/git-lfs/blob/v0.6.0/docs/man/git-lfs-pull.1.ronn) for details. ### Push @@ -343,7 +343,7 @@ and [git-lfs-pull(1)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git * Support pushing all objects to the server, regardless of the remote ref. #646 (@technoweenie) * Fix case where pre-push git hook exits with 0. #582 (@sinbad) -See [git-lfs-push(1)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git-lfs-push.1.ronn) for details. +See [git-lfs-push(1)](https://github.com/git-lfs/git-lfs/blob/v0.6.0/docs/man/git-lfs-push.1.ronn) for details. ### API Clients @@ -368,7 +368,7 @@ See [git-lfs-push(1)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git ### Misc -* Documented Git config values used by Git LFS in [git-lfs-config(5)](https://github.com/github/git-lfs/blob/v0.6.0/docs/man/git-lfs-config.5.ronn). #610 (@sinbad) +* Documented Git config values used by Git LFS in [git-lfs-config(5)](https://github.com/git-lfs/git-lfs/blob/v0.6.0/docs/man/git-lfs-config.5.ronn). #610 (@sinbad) * Experimental support for Git worktrees (in Git 2.5+) #546 (@sinbad) * Experimental extension support. #486 (@ryansimmen) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6019e11846..a3113665e0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,9 +35,9 @@ as a pull request that adds a markdown file to `docs/proposals` discussing the feature. This gives the community time to discuss it before a lot of code has been written. Roadmap items are linked to one or more Issue task lists ([example][roadmap-items]), with the `roadmap` label, that go into more detail. -[chat]: https://gitter.im/github/git-lfs +[chat]: https://gitter.im/git-lfs/git-lfs [roadmap]: ./ROADMAP.md -[roadmap-items]: https://github.com/github/git-lfs/issues/490 +[roadmap-items]: https://github.com/git-lfs/git-lfs/issues/490 The Git LFS teams mark issues and pull requests with the following labels: @@ -98,13 +98,13 @@ In order to run the RPM build `rpm/build_rpms.bsh` you will also need to: The easiest way to download Git LFS for making changes is `go get`: - $ go get github.com/github/git-lfs + $ go get github.com/git-lfs/git-lfs This clones the Git LFS repository to your `$GOPATH`. If you typically keep your projects in a specific directory, you can symlink it from `$GOPATH`: $ cd ~/path/to/your/projects - $ ln -s $GOPATH/src/github.com/github/git-lfs + $ ln -s $GOPATH/src/github.com/git-lfs/git-lfs From here, run `script/bootstrap` to build Git LFS in the `./bin` directory. Before submitting changes, be sure to run the Go tests and the shell integration @@ -125,27 +125,27 @@ tests: If you are the current maintainer: -* Create a [new draft Release](https://github.com/github/git-lfs/releases/new). +* Create a [new draft Release](https://github.com/git-lfs/git-lfs/releases/new). List any changes with links to related PRs. * Make sure your local dependencies are up to date: `script/bootstrap` * Ensure that tests are green: `script/cibuild` -* Bump the version in `lfs/lfs.go`, [like this](https://github.com/github/git-lfs/commit/dd17828e4a6f2394cbba8621037199dc28f046e8). +* Bump the version in `lfs/lfs.go`, [like this](https://github.com/git-lfs/git-lfs/commit/dd17828e4a6f2394cbba8621037199dc28f046e8). * Add the new version to the top of CHANGELOG.md * Build for all platforms with `script/bootstrap -all` (you need Go setup for cross compiling with Mac, Linux, FreeBSD, and Windows support). * Test the command locally. The compiled version will be in `bin/releases/{os}-{arch}/git-lfs-{version}/git-lfs` -* Get the draft Release ID from the GitHub API: `curl -in https://api.github.com/repos/github/git-lfs/releases` +* Get the draft Release ID from the GitHub API: `curl -in https://api.github.com/repos/git-lfs/git-lfs/releases` * Run `script/release -id {id}` to upload all of the compiled binaries to the release. * Publish the Release on GitHub. -* Update [Git LFS website](https://github.com/github/git-lfs.github.com/blob/gh-pages/_config.yml#L4) +* Update [Git LFS website](https://github.com/git-lfs/git-lfs.github.com/blob/gh-pages/_config.yml#L4) (release engineer access rights required). * Ping external teams on GitHub: * @github/desktop * Build packages: * rpm * apt -* Bump homebrew version and generate the homebrew hash with `curl --location https://github.com/github/git-lfs/archive/vx.y.z.tar.gz | shasum -a 256` ([example](https://github.com/Homebrew/homebrew-core/pull/413/commits/dc0eb1f62514f48f3f5a8d01ad3bea06f78bd566)) +* Bump homebrew version and generate the homebrew hash with `curl --location https://github.com/git-lfs/git-lfs/archive/vx.y.z.tar.gz | shasum -a 256` ([example](https://github.com/Homebrew/homebrew-core/pull/413/commits/dc0eb1f62514f48f3f5a8d01ad3bea06f78bd566)) ## Resources @@ -153,7 +153,7 @@ release. - [Using Pull Requests](https://help.github.com/articles/using-pull-requests/) - [GitHub Help](https://help.github.com) -[fork]: https://github.com/github/git-lfs/fork -[pr]: https://github.com/github/git-lfs/compare +[fork]: https://github.com/git-lfs/git-lfs/fork +[pr]: https://github.com/git-lfs/git-lfs/compare [style]: https://github.com/golang/go/wiki/CodeReviewComments -[cla]: https://cla.github.com/github/git-lfs/accept +[cla]: https://cla.github.com/git-lfs/git-lfs/accept diff --git a/INSTALLING.md b/INSTALLING.md index e7d2f73e4f..e328a92cdd 100644 --- a/INSTALLING.md +++ b/INSTALLING.md @@ -20,7 +20,7 @@ Apt/deb repos: Yum/rpm repos: `curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.rpm.sh | sudo bash` -If you are running a distribution which does not match exactly a repository uploaded for Git LFS, but for which there is a repository for a compatible upstream distribution, you can either run the script with some additional parameters, or run it and then manually-correct the resulting repository URLs. See [#1074](https://github.com/github/git-lfs/issues/1074) for details. +If you are running a distribution which does not match exactly a repository uploaded for Git LFS, but for which there is a repository for a compatible upstream distribution, you can either run the script with some additional parameters, or run it and then manually-correct the resulting repository URLs. See [#1074](https://github.com/git-lfs/git-lfs/issues/1074) for details. If you are running LinuxMint 17.1 Rebecca, which is downstream of Ubuntu Trusty and Debian Jessie, you can run: diff --git a/Makefile b/Makefile index 770a8688df..8dd5eddd3c 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ AR ?= ar SRCDIR := $(dir $(lastword $(MAKEFILE_LIST))) -LIBDIR := out/github.com/github/git-lfs +LIBDIR := out/github.com/git-lfs/git-lfs GOFLAGS := -Iout ifeq ($(MAKEFILE_GEN),) @@ -15,7 +15,7 @@ all: $(MAKEFILE_GEN) $(MAKEFILE_GEN) : out/genmakefile $(SRCDIR)commands/mancontent_gen.go @mkdir -p $(dir $@) - $< "$(SRCDIR)" github.com/github/git-lfs/ > $@ + $< "$(SRCDIR)" github.com/git-lfs/git-lfs/ > $@ else diff --git a/README.md b/README.md index ea2ebb5d6f..ccd5de85a9 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ preferences. * [Binary packages are available][rel] for Windows, Mac, Linux, and FreeBSD. * You can build it with Go 1.5+. See the [Contributing Guide](./CONTRIBUTING.md) for instructions. -[rel]: https://github.com/github/git-lfs/releases +[rel]: https://github.com/git-lfs/git-lfs/releases Note: Git LFS requires Git v1.8.5 or higher. @@ -71,7 +71,7 @@ Delta compression using up to 8 threads. Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 548 bytes | 0 bytes/s, done. Total 5 (delta 1), reused 0 (delta 0) -To https://github.com/github/git-lfs-test +To https://github.com/git-lfs/git-lfs-test 67fcf6a..47b2002 master -> master ``` @@ -94,8 +94,8 @@ is setup. 3. If the output includes a message like `Errors logged to /path/to/.git/lfs/objects/logs/*.log`, throw the contents in the issue, or as a link to a Gist or paste site. -[chat]: https://gitter.im/github/git-lfs -[ish]: https://github.com/github/git-lfs/issues +[chat]: https://gitter.im/git-lfs/git-lfs +[ish]: https://github.com/git-lfs/git-lfs/issues ## Contributing @@ -103,7 +103,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for info on working on Git LFS and sending patches. Related projects are listed on the [Implementations wiki page][impl]. You can also join [the project's chat room][chat]. -[impl]: https://github.com/github/git-lfs/wiki/Implementations +[impl]: https://github.com/git-lfs/git-lfs/wiki/Implementations ### Using LFS from other Go code diff --git a/ROADMAP.md b/ROADMAP.md index 319d82743a..e90e83dbfa 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -7,40 +7,40 @@ Git LFS. If you have an idea for a new feature, open an issue for discussion. | | Name | Ref | | ------ | ---- | --- | -| | git index issues | [#937](https://github.com/github/git-lfs/issues/937) | -| :soon: | Add ref information to upload request | [#969](https://github.com/github/git-lfs/issues/969) | -| :soon: | Socks proxy support | [#1424](https://github.com/github/git-lfs/issues/1424) | -| :no_entry_sign: | Not following 301 redirect | [#1129](https://github.com/github/git-lfs/issues/1129) | +| | git index issues | [#937](https://github.com/git-lfs/git-lfs/issues/937) | +| :soon: | Add ref information to upload request | [#969](https://github.com/git-lfs/git-lfs/issues/969) | +| :soon: | Socks proxy support | [#1424](https://github.com/git-lfs/git-lfs/issues/1424) | +| :no_entry_sign: | Not following 301 redirect | [#1129](https://github.com/git-lfs/git-lfs/issues/1129) | | | add all lfs.\* git config keys to git lfs env output | | -| | credential output hidden while transferring files | [#387](https://github.com/github/git-lfs/pull/387) | +| | credential output hidden while transferring files | [#387](https://github.com/git-lfs/git-lfs/pull/387) | | | Support multiple git alternates | | | | Investigate `git lfs checkout` hardlinking instead of copying files. | | | | Investigate `--shared` and `--dissociate` options for `git clone` (similar to `--references`) | | -| | Investigate `GIT_SSH_COMMAND` | [#1142](https://github.com/github/git-lfs/issues/1142) | | -| | Teach `git lfs install` to use `git config --system` instead of `git config --global` by default | [#1177](https://github.com/github/git-lfs/pull/1177) | +| | Investigate `GIT_SSH_COMMAND` | [#1142](https://github.com/git-lfs/git-lfs/issues/1142) | | +| | Teach `git lfs install` to use `git config --system` instead of `git config --global` by default | [#1177](https://github.com/git-lfs/git-lfs/pull/1177) | | | Investigate `git -c lfs.url=... lfs clone` usage | | -| | Test that manpages are built and included | [#1149](https://github.com/github/git-lfs/pull/1149) | -| | Update CI to build from source outside of git repo | [#1156](https://github.com/github/git-lfs/issues/1156#issuecomment-211574343) | -| :soon: | Teach `git lfs track` and others to warn when `git lfs install` hasn't been run (or auto-install) | [#1167](https://github.com/github/git-lfs/issues/1167) | -| | Investigate hanging pushes/pulls when git credential helper is not set | [#197](https://github.com/github/git-lfs/issues/197) | -| | Support git ssh shorthands | [#278](https://github.com/github/git-lfs/issues/278) | -| | Support `GIT_CONFIG` | [#318](https://github.com/github/git-lfs/issues/318) | -| | Warn when Git version is unsupported | [#410](https://github.com/github/git-lfs/issues/410) | -| | Detect when credential cacher is not setup | [#523](https://github.com/github/git-lfs/issues/523) | -| | Fix error logging from `git clone` errors | [#513](https://github.com/github/git-lfs/issues/513) | -| | Investigate cherry picking issues | [#438](https://github.com/github/git-lfs/issues/438) | -| | dynamic blob size cutoff for pointers | [#524](https://github.com/github/git-lfs/issues/524) | -| | windows `--help` support | [#394](https://github.com/github/git-lfs/issues/394) | -| | Investigate git hook installs within git worktree | [#1385](https://github.com/github/git-lfs/issues/1385) | -| | Support ssh username in ssh config | [#754](https://github.com/github/git-lfs/issues/754) | -| | Investigate `autocrlf` for lfs objects | [#723](https://github.com/github/git-lfs/issues/723) | +| | Test that manpages are built and included | [#1149](https://github.com/git-lfs/git-lfs/pull/1149) | +| | Update CI to build from source outside of git repo | [#1156](https://github.com/git-lfs/git-lfs/issues/1156#issuecomment-211574343) | +| :soon: | Teach `git lfs track` and others to warn when `git lfs install` hasn't been run (or auto-install) | [#1167](https://github.com/git-lfs/git-lfs/issues/1167) | +| | Investigate hanging pushes/pulls when git credential helper is not set | [#197](https://github.com/git-lfs/git-lfs/issues/197) | +| | Support git ssh shorthands | [#278](https://github.com/git-lfs/git-lfs/issues/278) | +| | Support `GIT_CONFIG` | [#318](https://github.com/git-lfs/git-lfs/issues/318) | +| | Warn when Git version is unsupported | [#410](https://github.com/git-lfs/git-lfs/issues/410) | +| | Detect when credential cacher is not setup | [#523](https://github.com/git-lfs/git-lfs/issues/523) | +| | Fix error logging from `git clone` errors | [#513](https://github.com/git-lfs/git-lfs/issues/513) | +| | Investigate cherry picking issues | [#438](https://github.com/git-lfs/git-lfs/issues/438) | +| | dynamic blob size cutoff for pointers | [#524](https://github.com/git-lfs/git-lfs/issues/524) | +| | windows `--help` support | [#394](https://github.com/git-lfs/git-lfs/issues/394) | +| | Investigate git hook installs within git worktree | [#1385](https://github.com/git-lfs/git-lfs/issues/1385) | +| | Support ssh username in ssh config | [#754](https://github.com/git-lfs/git-lfs/issues/754) | +| | Investigate `autocrlf` for lfs objects | [#723](https://github.com/git-lfs/git-lfs/issues/723) | ## Upcoming Features | | Name | Ref | | ------ | ---- | --- | -| :construction: | File locking | [#666](https://github.com/github/git-lfs/pull/666) | -| :ship: | Resumable uploads and downloads | [#414](https://github.com/github/git-lfs/issues/414) | +| :construction: | File locking | [#666](https://github.com/git-lfs/git-lfs/pull/666) | +| :ship: | Resumable uploads and downloads | [#414](https://github.com/git-lfs/git-lfs/issues/414) | | :construction: | Wrapped versions of `git pull` & `git checkout` that optimize without filters like `git lfs clone` | | | | Remove non-batch API route in client | | @@ -48,17 +48,17 @@ Git LFS. If you have an idea for a new feature, open an issue for discussion. | | Name | Ref | | ------ | ---- | --- | -| | Support tracking files by size | [#282](https://github.com/github/git-lfs/issues/282) +| | Support tracking files by size | [#282](https://github.com/git-lfs/git-lfs/issues/282) | | Binary diffing - reduce the amount of content sent over the wire. | | | | Client side metrics reporting, so the Git LFS server can optionally track how clients are performing. | | | | Pure SSH: full API & transfer support for SSH without redirect to HTTP | | -| | Compression of files in `.git/lfs/objects` | [#260](https://github.com/github/git-lfs/issues/260) | -| | LFS Migration tool | [#326](https://github.com/github/git-lfs/issues/326) | +| | Compression of files in `.git/lfs/objects` | [#260](https://github.com/git-lfs/git-lfs/issues/260) | +| | LFS Migration tool | [#326](https://github.com/git-lfs/git-lfs/issues/326) | | | Automatic upgrades | [#531](https://github.com/gihtub/git-lfs/issues/531) | -| | Investigate `git add` hash caching | [#574](https://github.com/github/git-lfs/issues/574) | -| | `git lfs archive` command | [#1322](https://github.com/github/git-lfs/issues/1322) | -| | Support 507 http responses | [#1327](https://github.com/github/git-lfs/issues/1327) | -| | Investigate shared object directory | [#766](https://github.com/github/git-lfs/issues/766) | +| | Investigate `git add` hash caching | [#574](https://github.com/git-lfs/git-lfs/issues/574) | +| | `git lfs archive` command | [#1322](https://github.com/git-lfs/git-lfs/issues/1322) | +| | Support 507 http responses | [#1327](https://github.com/git-lfs/git-lfs/issues/1327) | +| | Investigate shared object directory | [#766](https://github.com/git-lfs/git-lfs/issues/766) | ## Project Related @@ -66,10 +66,10 @@ These are items that don't affect Git LFS end users. | | Name | Ref | | ------ | ---- | --- | -| :ship: | CI builds for Windows. | [#1567](https://github.com/github/git-lfs/pull/1567) | +| :ship: | CI builds for Windows. | [#1567](https://github.com/git-lfs/git-lfs/pull/1567) | | | Automated build servers that build Git LFS on native platforms. | | | | Automated QA test suite for running release candidates through a gauntlet of open source and proprietary Git LFS environments. | | -| | Automatic updates of the Git LFS client. | [#531](https://github.com/github/git-lfs/issues/531) | +| | Automatic updates of the Git LFS client. | [#531](https://github.com/git-lfs/git-lfs/issues/531) | ## Legend diff --git a/api/http_lifecycle.go b/api/http_lifecycle.go index 3d0cd5c70d..45b1b80c2a 100644 --- a/api/http_lifecycle.go +++ b/api/http_lifecycle.go @@ -58,7 +58,7 @@ func NewHttpLifecycle(endpoints EndpointSource) *HttpLifecycle { // *http.Request will not be generated. // // In all cases, credentials are attached to the HTTP request as described in -// the `auth` package (see github.com/github/git-lfs/auth#GetCreds). +// the `auth` package (see github.com/git-lfs/git-lfs/auth#GetCreds). // // Finally, all of these components are combined together and the resulting // request is returned. diff --git a/api/request_schema.go b/api/request_schema.go index d26d01aac9..2c1cb560a0 100644 --- a/api/request_schema.go +++ b/api/request_schema.go @@ -9,7 +9,7 @@ type RequestSchema struct { // Path is the relative path that this API call should be made against. Path string // Operation is the operation used to determine which endpoint to make - // the request against (see github.com/github/git-lfs/config). + // the request against (see github.com/git-lfs/git-lfs/config). Operation Operation // Query is the query parameters used in the request URI. Query map[string]string diff --git a/auth/credentials.go b/auth/credentials.go index 6113c6d48f..2ce8d289d8 100644 --- a/auth/credentials.go +++ b/auth/credentials.go @@ -202,7 +202,7 @@ func execCredsCommand(cfg *config.Configuration, input Creds, subCommand string) process is the process that fires up the daemon, it will wait forever (until the daemon exits, really) trying to read from stderr. - See https://github.com/github/git-lfs/issues/117 for more details. + See https://github.com/git-lfs/git-lfs/issues/117 for more details. */ err := cmd.Start() diff --git a/commands/command_init.go b/commands/command_init.go index 5f685125c0..5745e5ffa0 100644 --- a/commands/command_init.go +++ b/commands/command_init.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" ) -// TODO: Remove for Git LFS v2.0 https://github.com/github/git-lfs/issues/839 +// TODO: Remove for Git LFS v2.0 https://github.com/git-lfs/git-lfs/issues/839 func initCommand(cmd *cobra.Command, args []string) { fmt.Fprintf(os.Stderr, "WARNING: 'git lfs init' is deprecated. Use 'git lfs install' now.\n") installCommand(cmd, args) diff --git a/commands/command_uninit.go b/commands/command_uninit.go index 26a02ecb9e..fe492fd3ea 100644 --- a/commands/command_uninit.go +++ b/commands/command_uninit.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" ) -// TODO: Remove for Git LFS v2.0 https://github.com/github/git-lfs/issues/839 +// TODO: Remove for Git LFS v2.0 https://github.com/git-lfs/git-lfs/issues/839 // uninitCmd removes any configuration and hooks set by Git LFS. func uninitCommand(cmd *cobra.Command, args []string) { diff --git a/commands/commands.go b/commands/commands.go index 8504d244de..c93fe34d35 100644 --- a/commands/commands.go +++ b/commands/commands.go @@ -256,7 +256,7 @@ func determineIncludeExcludePaths(config *config.Configuration, includeArg, excl // isCommandEnabled returns whether the environment variable GITLFSENABLED // is "truthy" according to config.Os.Bool (see -// github.com/github/git-lfs/config#Configuration.Env.Os), returning false +// github.com/git-lfs/git-lfs/config#Configuration.Env.Os), returning false // by default if the enviornment variable is not specified. // // This function call should only guard commands that do not yet have stable diff --git a/debian/copyright b/debian/copyright index 6181bd4e77..410e7740b6 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,6 +1,6 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: git-lfs -Source: https://github.com/github/git-lfs +Source: https://github.com/git-lfs/git-lfs Files: * Copyright: 2013-2015 Github, Inc. diff --git a/debian/rules b/debian/rules index 137c59cf6d..9a6c80ca50 100755 --- a/debian/rules +++ b/debian/rules @@ -11,7 +11,7 @@ else ifeq ($(DEB_HOST_ARCH), amd64) endif BUILD_DIR := obj-$(DEB_HOST_GNU_TYPE) -export DH_GOPKG := github.com/github/git-lfs +export DH_GOPKG := github.com/git-lfs/git-lfs # DH_GOLANG_EXCLUDES typically incorporates vendor exclusions from script/test export DH_GOLANG_EXCLUDES := test github.com/olekukonko/ts/* github.com/xeipuuv/* github.com/technoweenie/go-contentaddressable/* github.com/spf13/cobra/* github.com/kr/* github.com/pkg/errors export PATH := $(CURDIR)/$(BUILD_DIR)/bin:$(PATH) @@ -47,8 +47,8 @@ override_dh_auto_install: cp $(BUILD_DIR)/bin/git-lfs debian/git-lfs/usr/bin/ override_dh_auto_test: - ln -s ../../../../../../commands/repos $(BUILD_DIR)/src/github.com/github/git-lfs/commands/repos - ln -s ../../../../bin $(BUILD_DIR)/src/github.com/github/git-lfs/bin + ln -s ../../../../../../commands/repos $(BUILD_DIR)/src/github.com/git-lfs/git-lfs/commands/repos + ln -s ../../../../bin $(BUILD_DIR)/src/github.com/git-lfs/git-lfs/bin #dh_golang uses the wrong dir to test on. This tricks everything into being happy DEB_BUILD_GNU_TYPE=$(DEB_HOST_GNU_TYPE) dh_auto_test - rm $(BUILD_DIR)/src/github.com/github/git-lfs/commands/repos $(BUILD_DIR)/src/github.com/github/git-lfs/bin + rm $(BUILD_DIR)/src/github.com/git-lfs/git-lfs/commands/repos $(BUILD_DIR)/src/github.com/git-lfs/git-lfs/bin diff --git a/docs/man/git-lfs-config.5.ronn b/docs/man/git-lfs-config.5.ronn index 619a85f035..2c9f8f4a10 100644 --- a/docs/man/git-lfs-config.5.ronn +++ b/docs/man/git-lfs-config.5.ronn @@ -76,7 +76,7 @@ lfs option can be scoped inside the configuration for a remote. using any mechanism you like (rather than just HTTP). `path` should point to the process you wish to invoke. The protocol between the git-lfs client and the custom transfer process is documented at - https://github.com/github/git-lfs/blob/master/docs/custom-transfers.md + https://github.com/git-lfs/git-lfs/blob/master/docs/custom-transfers.md must be a unique identifier that the LFS server understands. When calling the LFS API the client will include a list of supported transfer diff --git a/docs/proposals/locking_api.md b/docs/proposals/locking_api.md index ad469085b1..1adaa3d6be 100644 --- a/docs/proposals/locking_api.md +++ b/docs/proposals/locking_api.md @@ -122,7 +122,7 @@ < Content-Type: application/vnd.git-lfs+json < < { -< error: "github/git-lfs: internal server error" +< error: "git-lfs/git-lfs: internal server error" < } ``` @@ -175,6 +175,6 @@ Note: no matching locks yields a payload of `locks: []`, and a status of 200. < < { < locks: [], -< error: "github/git-lfs: internal server error" +< error: "git-lfs/git-lfs: internal server error" < } ``` diff --git a/docs/spec.md b/docs/spec.md index dc63ae1877..187803e9e4 100644 --- a/docs/spec.md +++ b/docs/spec.md @@ -142,11 +142,11 @@ configuration options: [core] repositoryformatversion = 0 [lfs] - url = "https://github.com/github/git-lfs.git/info/lfs" + url = "https://github.com/git-lfs/git-lfs.git/info/lfs" [remote "origin"] - url = https://github.com/github/git-lfs + url = https://github.com/git-lfs/git-lfs fetch = +refs/heads/*:refs/remotes/origin/* - lfsurl = "https://github.com/github/git-lfs.git/info/lfs" + lfsurl = "https://github.com/git-lfs/git-lfs.git/info/lfs" ``` Git LFS uses `git credential` to fetch credentials for HTTPS requests. Setup diff --git a/glide.yaml b/glide.yaml index c6d77c154a..99de10bcd7 100644 --- a/glide.yaml +++ b/glide.yaml @@ -1,4 +1,4 @@ -package: github.com/github/git-lfs +package: github.com/git-lfs/git-lfs import: - package: github.com/bgentry/go-netrc version: 9fd32a8b3d3d3f9d43c341bfe098430e07609480 diff --git a/rpm/INSTALL.md b/rpm/INSTALL.md index 07c2e62bb0..605a881539 100644 --- a/rpm/INSTALL.md +++ b/rpm/INSTALL.md @@ -67,7 +67,7 @@ as lfs/lfs.go is updated, build_rpms.bsh parses the version number using the pattern ```s|const Version = "\([0-9.]*\)"|\1|``` and updates SPECS/git-lfs.spec. The version number is then used to download: -https://github.com/github/git-lfs/archive/v%{version}.tar.gz +https://github.com/git-lfs/git-lfs/archive/v%{version}.tar.gz This way when a new version is archived, it will get downloaded and built against. When developing, it is advantageous to use the currently checked out diff --git a/rpm/SPECS/git-lfs.spec b/rpm/SPECS/git-lfs.spec index 23fc51f0b8..6164f06182 100644 --- a/rpm/SPECS/git-lfs.spec +++ b/rpm/SPECS/git-lfs.spec @@ -6,7 +6,7 @@ Summary: Git extension for versioning large files Group: Applications/Archiving License: MIT URL: https://git-lfs.github.com/ -Source0: https://github.com/github/git-lfs/archive/v%{version}/%{name}-%{version}.tar.gz +Source0: https://github.com/git-lfs/git-lfs/archive/v%{version}/%{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: perl-Digest-SHA BuildRequires: golang, tar, rubygem-ronn, which, git >= 1.8.2 diff --git a/script/backport-pr b/script/backport-pr index 219389dccf..15a39c44f6 100755 --- a/script/backport-pr +++ b/script/backport-pr @@ -11,8 +11,8 @@ relversion="v$1.x" relbranch="release-$1" pr="$2" prbranch="$relbranch-backport-$pr" -pullsurl="https://api.github.com/repos/github/git-lfs/pulls" -prurl="https://api.github.com/repos/github/git-lfs/pulls/$pr" +pullsurl="https://api.github.com/repos/git-lfs/git-lfs/pulls" +prurl="https://api.github.com/repos/git-lfs/git-lfs/pulls/$pr" prjson="$(curl -n $pullsurl/$pr 2>/dev/null)" headref="$(echo $prjson | jq -r -e ".head.ref")" [ "$?" -ne 0 ] && { diff --git a/script/build.go b/script/build.go index d2e157d5b3..53b8372ce6 100644 --- a/script/build.go +++ b/script/build.go @@ -47,7 +47,7 @@ func mainBuild() { cmd, _ := exec.Command("git", "rev-parse", "--short", "HEAD").Output() if len(cmd) > 0 { - LdFlag = strings.TrimSpace("-X github.com/github/git-lfs/config.GitCommit=" + string(cmd)) + LdFlag = strings.TrimSpace("-X github.com/git-lfs/git-lfs/config.GitCommit=" + string(cmd)) } buildMatrix := make(map[string]Release) diff --git a/script/changelog b/script/changelog index 5d5ef7098d..a56a12435d 100755 --- a/script/changelog +++ b/script/changelog @@ -6,7 +6,7 @@ commit_summary() { local hash=$1 pr=$(git show $hash | grep -o "#\([0-9]*\)" | cut -c 2-) - prjson="$(curl -n https://api.github.com/repos/github/git-lfs/pulls/$pr 2>/dev/null)" + prjson="$(curl -n https://api.github.com/repos/git-lfs/git-lfs/pulls/$pr 2>/dev/null)" title="$(echo $prjson | jq -r -e ".title")" id="$(echo $prjson | jq -r -e ".number")" author="$(echo $prjson | jq -r -e ".user.login")" diff --git a/script/release.go b/script/release.go index 47cbfed556..8e2c5d0754 100644 --- a/script/release.go +++ b/script/release.go @@ -12,13 +12,13 @@ import ( ) var ( - ReleaseId = flag.Int("id", 0, "github/git-lfs Release ID") - uploadUrlFmt = "https://uploads.github.com/repos/github/git-lfs/releases/%d/assets?%s" + ReleaseId = flag.Int("id", 0, "git-lfs/git-lfs Release ID") + uploadUrlFmt = "https://uploads.github.com/repos/git-lfs/git-lfs/releases/%d/assets?%s" ) func mainRelease() { if *ReleaseId < 1 { - log.Println("Need a valid github/git-lfs release id.") + log.Println("Need a valid git-lfs/git-lfs release id.") log.Fatalln("usage: script/release -id") } diff --git a/script/run b/script/run index 5348a17f18..a19f6467cd 100755 --- a/script/run +++ b/script/run @@ -1,4 +1,4 @@ #!/usr/bin/env bash script/fmt commit=`git rev-parse --short HEAD` -GO15VENDOREXPERIMENT=1 go run -ldflags="-X github.com/github/git-lfs/config.GitCommit=$commit" ./git-lfs.go "$@" +GO15VENDOREXPERIMENT=1 go run -ldflags="-X github.com/git-lfs/git-lfs/config.GitCommit=$commit" ./git-lfs.go "$@" diff --git a/test/README.md b/test/README.md index 2cc14812da..b7c9a342a2 100644 --- a/test/README.md +++ b/test/README.md @@ -31,12 +31,12 @@ github.com/kr/text github.com/cheggaaa/pb github.com/rubyist/tracerx github.com/kr/pretty -github.com/github/git-lfs/git +github.com/git-lfs/git-lfs/git github.com/technoweenie/assert === RUN TestSuccessStatus --- PASS: TestSuccessStatus (0.00 seconds) PASS -ok _/Users/rick/github/git-lfs/lfs 0.011s +ok _/Users/rick/git-lfs/git-lfs/lfs 0.011s ``` [t]: http://golang.org/pkg/testing/ @@ -51,7 +51,7 @@ they run in separate OS processes. ``` $ test/test-happy-path.sh compile git-lfs for test/test-happy-path.sh -LFSTEST_URL=/Users/rick/github/git-lfs/test/remote/url LFSTEST_DIR=/Users/rick/github/git-lfs/test/remote lfstest-gitserver +LFSTEST_URL=/Users/rick/git-lfs/git-lfs/test/remote/url LFSTEST_DIR=/Users/rick/git-lfs/git-lfs/test/remote lfstest-gitserver test: happy path ... OK ``` diff --git a/test/test-uninstall.sh b/test/test-uninstall.sh index f055d31651..36689f61df 100755 --- a/test/test-uninstall.sh +++ b/test/test-uninstall.sh @@ -14,7 +14,7 @@ begin_test "uninstall outside repository" printf "$clean" | grep "git-lfs clean" printf "$filter" | grep "git-lfs filter-process" - # uninstall multiple times to trigger https://github.com/github/git-lfs/issues/529 + # uninstall multiple times to trigger https://github.com/git-lfs/git-lfs/issues/529 git lfs uninstall git lfs install git lfs uninstall | tee uninstall.log