mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
No description
426d648681
Summary: Fixes T10037. When we're building commit `aabbccdd`, we currently do this to check it out: git reset --hard aabbccdd However, this has an undesirable side effect of moving the current branch pointer to point at `aabbccdd`. The current branch pointer may be some totally different branch which `aabbccdd` is not part of, so this is confusing and misleading. Instead, use `git reset --hard HEAD` to get the primary effect we want (destroying staged changes) and then `git checkout aabbccdd` to checkout the commit in a detached HEAD state. Test Plan: - Ran a build (a commit-focused operation) successfully. - Verified working copy was pointed at a detached HEAD afterward: ``` builder@sbuild001:/var/drydock/workingcopy-167/repo/git-test-ii$ git status HEAD detached at ffc7635 nothing to commit, working directory clean ``` - Ran a land (a branch-foused operation) successfully. - Verified working copy was pointed at a branch afterward: ``` builder@sbuild001:/core/data/drydock/workingcopy-168/repo/git-test$ git status On branch master Your branch is up-to-date with 'origin/master'. nothing to commit, working directory clean ``` Reviewers: chad Reviewed By: chad Subscribers: yelirekim Maniphest Tasks: T10037 Differential Revision: https://secure.phabricator.com/D14850 |
||
---|---|---|
bin | ||
conf | ||
externals | ||
resources | ||
scripts | ||
src | ||
support | ||
webroot | ||
.arcconfig | ||
.arclint | ||
.arcunit | ||
.editorconfig | ||
.gitignore | ||
LICENSE | ||
NOTICE | ||
README.md |
Phabricator is a collection of web applications which help software companies build better software.
Phabricator includes applications for:
- reviewing and auditing source code;
- hosting and browsing repositories;
- tracking bugs;
- managing projects;
- conversing with team members;
- assembling a party to venture forth;
- writing stuff down and reading it later;
- hiding stuff from coworkers; and
- also some other things.
You can learn more about the project (and find links to documentation and resources) at Phabricator.org
Phabricator is developed and maintained by Phacility.
SUPPORT RESOURCES
For resources on filing bugs, requesting features, reporting security issues, and getting other kinds of support, see Support Resources.
NO PULL REQUESTS!
We do not accept pull requests through GitHub. If you would like to contribute code, please read our Contributor's Guide.
LICENSE
Phabricator is released under the Apache 2.0 license except as otherwise noted.