summaryrefslogtreecommitdiff
path: root/Command
Commit message (Collapse)AuthorAge
...
* fsck: When a key is not previously known in the location log, record ↵Gravatar Joey Hess2016-05-10
| | | | something so that reinject --known will work.
* fix overindentGravatar Joey Hess2016-05-10
|
* version: Display OS version and architecture too.Gravatar Joey Hess2016-05-05
|
* fix build warning on windows and androidGravatar Joey Hess2016-05-05
|
* map: Hide dead repositories that are not connected to the graph.Gravatar Joey Hess2016-05-04
| | | | | | * map: Hide dead repositories that are not connected to the graph. * map: Changed colors; red is used for untrusted repositories and grey for dead.
* Fix bug that sometimes prevented git-annex smudge --clean from consuming all ↵Gravatar Joey Hess2016-05-02
| | | | its input, which resulted in git add bypassing git-annex.
* refactorGravatar Joey Hess2016-04-22
|
* assistant: Deal with upcoming git's refusal to merge unrelated histories by ↵Gravatar Joey Hess2016-04-22
| | | | | | | | | | | | | default git 2.8.1 (or perhaps 2.9.0) is going to prevent git merge from merging in unrelated branches. Since the webapp's pairing etc features often combine together repositories with unrelated histories, work around this behavior change by setting GIT_MERGE_ALLOW_UNRELATED_HISTORIES when the assistant merges. Note though that this is not done for git annex sync's merges, so it will follow git's default or configured behavior.
* reinject: Added new mode which can reinject known files into the annex.Gravatar Joey Hess2016-04-22
| | | | For example: git-annex reinject --known /mnt/backup/*
* adjusted branches need git 2.2.0 or newerGravatar Joey Hess2016-04-22
| | | | | | When git-annex is used with a git version older than 2.2.0, disable support for adjusted branches, since GIT_COMMON_DIR is needed to update them and was first added in that version of git.
* calckey: New plumbing command, calculates the key that would be used to ↵Gravatar Joey Hess2016-04-20
| | | | refer to a file
* reinject: When src file's content cannot be verified, leave it alone, ↵Gravatar Joey Hess2016-04-20
| | | | instead of deleting it.
* fsck: Warn when core.sharedRepository is set and an annex object file's ↵Gravatar Joey Hess2016-04-14
| | | | | | | | | | | | | | write bit is not set and cannot be set due to the file being owned by a different user. Made all Annex.Perms file mode changing functions ignore errors when core.sharedRepository is set, because the file might be owned by someone else. I don't fancy getting bug reports about crashes due to set modes in this configuration, which is a very foot-shooty configuration in the first place. The fsck warning is necessary because old repos kept files mode 444, which doesn't allow locking them, and so if the mode remains 444 due to the file being owned by someone else, the user should be told about it.
* Preserve execute bits of unlocked files in v6 mode.Gravatar Joey Hess2016-04-14
| | | | | | | | | | | | | | When annex.thin is set, adding an object will add the execute bits to the work tree file, and this does mean that the annex object file ends up executable. This doesn't add any complexity that wasn't already present, because git annex add of an executable file has always ingested it so that the annex object ends up executable. But, since an annex object file can be executable or not, when populating an unlocked file from one, the executable bit is always added or removed to match the mode of the pointer file.
* webapp: When $HOME is a git repository, and has been initialized for use by ↵Gravatar Joey Hess2016-04-13
| | | | git-annex, opening the webapp went ahead and ran the assistant there, annexing all files. Since this is almost certianly not desirable, especially when the user is just opening the webapp from a dekstop menu which happens to run it in $HOME, the webapp will now not treat such a $HOME git repository as a git-annex repository.
* smudge: Print a warning when annex.thin is set, as git's smudge interface ↵Gravatar Joey Hess2016-04-13
| | | | does not allow honoring that configuration.
* correct commentGravatar Joey Hess2016-04-13
|
* add AdjBranch newtype; some simplicationsGravatar Joey Hess2016-04-09
|
* hard links on windowsGravatar Joey Hess2016-04-08
| | | | | * annex.thin and annex.hardlink are now supported on Windows. * unannex --fast now makes hard links on Windows.
* run out of tree merge with --no-ffGravatar Joey Hess2016-04-06
| | | | | | This is how direct mode does it too, and somehow, for reasons that currently escape me, this makes git merge not care if it's run with an empty work tree.
* fix auto merge conflict resolution when doing out of tree merge for adjusted ↵Gravatar Joey Hess2016-04-06
| | | | branch
* sync: Show output of git commit.Gravatar Joey Hess2016-04-05
| | | | | | Rationalle: User might have hook scripts whose output they want to see. Also, git commit output may tell the user they forgot to add a file. The output is not too ugly when there's nothing to commit.
* Merge branch 'adjustedbranch'Gravatar Joey Hess2016-03-31
|\
| * fixed merging of changes from adjusted branch + a remoteGravatar Joey Hess2016-03-31
| |
| * autoinit on upgradeGravatar Joey Hess2016-03-31
| |
| * made some progress on syncing adjusted branches, but still buggyGravatar Joey Hess2016-03-31
| |
* | log --raw-date: Use to display seconds from unix epoch.Gravatar Joey Hess2016-03-29
| |
* | log: Display time with time zone.Gravatar Joey Hess2016-03-29
| | | | | | | | Also cleaned up ugliness with zombies.
| * prevent git-annex adjust changing things out from under the daemonGravatar Joey Hess2016-03-29
| |
| * init: Automatically enter the adjusted unlocked branch when in a v6 repo on ↵Gravatar Joey Hess2016-03-29
| | | | | | | | a filesystem not supporting symlinks.
| * limit git annex adjust to v6 modeGravatar Joey Hess2016-03-29
| | | | | | | | doesn't work in v5
| * option parser for adjust commandGravatar Joey Hess2016-03-29
| |
| * Merge branch 'master' into adjustedbranchGravatar Joey Hess2016-03-29
| |\ | |/ |/|
* | Correct git-annex info to include unlocked files in v6 repository.Gravatar Joey Hess2016-03-14
| | | | | | | | | | | | | | | | | | | | | | An unlocked present file does not have a pointer file in the worktree, so info skipped counting it. It may be that unused was also affected by the problem, but it seemed not to be in my tests. I think because of the use of the associatedFilesFilter. This fix slows down both info and unused a little bit, since they have to query the contents of files from git, but only when handling unlocked files.
| * implement another adjustment -- easy to do now!Gravatar Joey Hess2016-03-11
| |
| * Merge branch 'master' into adjustedbranchGravatar Joey Hess2016-03-11
| |\ | |/ |/|
* | remove redundant start messageGravatar Joey Hess2016-03-09
| |
* | refactorGravatar Joey Hess2016-03-09
| |
* | dropkey --jsonGravatar Joey Hess2016-03-06
| |
* | dropkey: Add --batch.Gravatar Joey Hess2016-03-06
| |
* | Merge branch 'no-cbits'Gravatar Joey Hess2016-03-05
|\ \
| | * working toward adjusted commit propigationGravatar Joey Hess2016-03-03
| | |
| | * push original branch, not adjusted branchGravatar Joey Hess2016-03-03
| | |
| | * fix bug introduced in recent commitGravatar Joey Hess2016-02-29
| | |
| | * update sync branch to the orig branch when in adjusted branchGravatar Joey Hess2016-02-29
| | |
| | * make assistant aware of adjusted branches when mergingGravatar Joey Hess2016-02-29
| | |
| | * make sync aware of adjusted branchesGravatar Joey Hess2016-02-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So, it will pull and push the original branch, not the adjusted one. And, for merging, it will use updateAdjustedBranch (not implemented yet). Note that remaining uses of Git.Branch.current need to be checked too; for things that should act on the original branch, and not the adjusted branch.
| | * Merge branch 'master' into adjustedbranchGravatar Joey Hess2016-02-29
| | |\ | |_|/ |/| |
* | | metadata: Added -r to remove all current values of a field.Gravatar Joey Hess2016-02-29
| | |
* | | use DelMeta to unset tagGravatar Joey Hess2016-02-29
| | | | | | | | | | | | No behavior change, just simplification.