git-annex/doc/bugs
Joey Hess 1558e03014
Refuse to upgrade direct mode repositories when git is older than 2.22
That git fixed a memory leak that could cause an OOM during the upgrade.

Most git-annex builds have a new enough git already.
OSX git was upgraded with brew.

Linux i386ancient build's git was too old. Upgrading it to a fixed
git didn't work (due to the newer git not working with the old ssh,
https://bugs.chromium.org/p/git/issues/detail?id=7 )

Choices to deal with that were:

* Somehow make direct mode upgrade work with the old git, avoiding its
  OOM problem. One way would be to switch the repo to indirect mode
  first, and so upgrade to a repo with locked files. Not good when
  the filesystem does not support symlinks.
* backport the OOM fix from git 2.22
  (And do what about the version number so git-annex knows it's fixed?)
* backport openssh (and possibly more stuff)
* move the i386ancient build to at least Debian stretch (still backporting git)
  But this will make it no longer work with some of the ancient kernels it
  targets.

Of those, backporting the OOM fix seemed the best approach. Put "oomfix"
in the git version number to indicate it.

I have not automated building the git backport, so here's the patch I
used:

diff -ur orig/git-2.1.4/convert.c git-2.1.4/convert.c
--- orig/git-2.1.4/convert.c	2014-12-18 18:42:18.000000000 +0000
+++ git-2.1.4/convert.c	2019-08-29 20:05:04.371872338 +0100
@@ -404,7 +404,7 @@
 	if (start_async(&async))
 		return 0;	/* error was already reported */

-	if (strbuf_read(&nbuf, async.out, len) < 0) {
+	if (strbuf_read(&nbuf, async.out, 0) < 0) {
 		error("read from external filter %s failed", cmd);
 		ret = 0;
 	}
diff -ur orig/git-2.1.4/GIT-VERSION-GEN git-2.1.4/GIT-VERSION-GEN
--- orig/git-2.1.4/GIT-VERSION-GEN	2014-12-18 18:42:18.000000000 +0000
+++ git-2.1.4/GIT-VERSION-GEN	2019-08-29 20:06:39.132743228 +0100
@@ -1,7 +1,7 @@
 #!/bin/sh

 GVF=GIT-VERSION-FILE
-DEF_VER=v2.1.4
+DEF_VER=v2.1.4.oomfix

 LF='
 '
diff -ur orig/git-2.1.4/configure git-2.1.4/configure
--- orig/git-2.1.4/configure	2014-12-18 18:42:19.000000000 +0000
+++ git-2.1.4/configure	2019-08-29 20:27:45.896380015 +0100
@@ -580,8 +580,8 @@
 # Identity of this package.
 PACKAGE_NAME='git'
 PACKAGE_TARNAME='git'
-PACKAGE_VERSION='2.1.4'
-PACKAGE_STRING='git 2.1.4'
+PACKAGE_VERSION='2.1.4.oomfix'
+PACKAGE_STRING='git 2.1.4.oomfix'
 PACKAGE_BUGREPORT='git@vger.kernel.org'
 PACKAGE_URL=''

diff -ur orig/git-2.1.4/version git-2.1.4/version
--- orig/git-2.1.4/version	2014-12-18 18:42:19.000000000 +0000
+++ git-2.1.4/version	2019-08-29 20:06:17.572545210 +0100
@@ -1 +1 @@
-2.1.4
+2.1.4.oomfix
2019-08-29 15:24:41 -04:00
..
--backend_for_init_is_in_no_effect__63__ comment 2017-08-15 13:00:33 -04:00
--shared_setting_of_git_causes_annex__39__ed_files_to_be_writeable__33__ Added a comment 2017-12-05 18:20:41 +00:00
2_ssh_connection_prompts_for_password comment 2017-08-15 12:54:12 -04:00
3_tests_fail_while_trying_to_build_fresh_git_annex_6.20181011+git109-gff9ba1f4d Added a comment 2018-10-24 16:01:53 +00:00
7.20181211+git29-gab4a1bed9_fails_tests_during_neurodebian_build response 2019-01-21 16:31:15 -04:00
20151116_tests_fail_on_OS_X
__34__Adding_4923_files__34___is_really_slow
__34__byte-progress__34___could_jump_down_upon_initiating_re-download_--_report_actual_one_first__63__
__34__content_is_locked__34___with_git-annex-drop_-J48 Added a comment 2018-10-29 21:08:55 +00:00
__34__error__58___invalid_object__34____44___after_add__59___cannot_commit Added a comment: bump 2019-01-05 23:06:05 +00:00
__34__git-annex__58___direct__58___1_failed__34___on_Windows Added a comment: Still getting this error 2018-02-02 16:45:50 +00:00
__34__git_status__34___thread_blocked_indefinitely_in_an_MVar_operation comment and toddo 2019-03-22 09:23:31 -04:00
__34__git_update-index_--refresh_bigfile__34___fails_with___34__fatal__58___Out_of_memory__44___realloc_failed__34__ same 2019-02-05 14:05:59 -04:00
__34__invalid_object__34___errors_cropping_up
__34__metadata_only__34___git-remote-gcrypt_syncing_files_anyway
__34__sha256sum_failed__34___for_some_files_with_newest_Android_client close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
__34__Unsupported_url_scheme__34___message_when_trying_to_cconnect_to_ftp_server comment 2019-05-29 09:24:25 -04:00
__39__add__39___results_in_max_cpu__44___long_run_and_huge_repo
__39__annex_add__39___locks_unmodified_file_in_V5_but_not_V6 change v6 git-annex add of staged unmodified unlocked file 2018-09-12 14:00:05 -04:00
__39__web__39___remote_does_not_work_on_Android close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
__91__Android__93_____34__Make_Camera_Repository__34___button_goes_to_blank_page close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
__91__meta__93___ikiwiki_is___42__slow__42__ Added a comment 2017-09-29 20:38:59 +00:00
__91__PATCH__93___Cosmetic__58___clarify_a_warning_message Added a comment 2017-12-08 21:11:41 +00:00
__91__PATCH__93___Cosmetic__58___only_print_ikiwiki_command_if_it__39__s_run simplify ikiwiki docs build testing and output 2017-11-07 16:36:01 -04:00
_git-annex__58___bad_url_ssh__58____47____47__git__64__gitlab.com__58____126____47__gitlabname__47__reponame.git
_impossible_to_switch_repositories_on_android__in_webapp close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Aborts_with_SQLite_error_when_dropping_contents
acl_not_honoured_in_rsync_remote
adb_special_remote_fetches_but_does_not_add_all_files comment 2019-05-23 13:33:53 -04:00
add_-J_fails_with_not_found Avoid repeated checking that files passed on the command line exist. 2017-10-16 14:10:20 -04:00
Add_custom-setup_stanza_to_.cabal_file Added a comment: I just found out you're already aware of this 2017-12-15 07:16:13 +00:00
Add_day_to_metadata. remove nix section to unbreak i386-ancient build 2017-11-08 14:52:36 -04:00
Add_explicit_retries_for_curl__47__wget_on___34__transient__34___errors__63__ close 2018-03-29 13:32:02 -04:00
add_fails_with_v6_repo_when_four_levels_deep Added a comment: Thanks! 2018-07-19 19:44:25 +00:00
add_FILE__report_line_is_printed_twice___40__in_a_particular_scenario__41__ analysis 2019-05-06 12:39:35 -04:00
Add_support_for_skein512__95__256_hash
added_branches_makes___39__git_annex_unused__39___slow
adding_a_remote_server_fails
adding_remote_server_using_ssh_on_a_4.1_device close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Adding_torrent_via_addurl_fails Added a comment 2018-01-12 12:01:31 +00:00
Adding_zip_or_7z_or_tar_archive_builds_for_windows
addurl_results_in_different_file_to_wget fix http-client gzip decompression bug 2018-05-21 15:10:25 -04:00
addurl_unittest_failing_under_windows Added a comment 2018-09-24 19:33:41 +00:00
Adjust_--unlock_not_using_--reflink__63__ yet another instance of git smudge/clean interface suck 2017-12-05 13:28:07 -04:00
after_git_annex_add_and_commit__44___git_annex_fsck_fails__58___no_known_copies
All_inodes_eaten
Allow_automatic_retry_git_annex_get hmm 2018-03-29 14:10:10 -04:00
android_4.3_install_failed_ close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_4.4_install_fails_with_permission_denied_errors close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_6.0_compatibility close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android__44___unable_to_start_browser_ reopen 2019-03-22 09:44:40 -04:00
Android__58___addurl__58___Network.BSD.getProtocolByName__58___does_not_exist___40__no_such_protocol_name__58___tcp__41__ comment 2019-06-26 12:29:21 -04:00
Android__58___Cannot_create_repo_on_external_sd_card close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
android__58___cannot_link_executable close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android__58___Several_error_messages___47___warnings
Android__58___use___47__data__47____8230___for_git-annex.home__63__ close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android___58___handling_DCIM__47__Camera_not_being_configurable
Android_can__39__t_sync_files_with_utf-8_characters_in_names
Android_cannot_setup_gitlab_repo_due_to_ECDSA_key close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_CM_5.1_ANDROID__95__ROOT_not_set close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
android_ed25519_algorithm Added a comment: fine with me! 2018-05-10 13:02:23 +00:00
Android_install_doesn__39__t_permanently_add_to___36__PATH Added a comment 2019-05-20 15:23:45 +00:00
android_installation_fails Added a comment: works! 2019-01-18 22:40:39 +00:00
Android_installation_is_missing___36__PATH_setup source git-annex-install so it it can add git-annex to PATH 2018-10-22 13:22:10 -04:00
annex-checkuuid_renders_remotes_inaccessible fix annex-checkuuid 2018-06-04 16:52:22 -04:00
annex-lookupkey_fails_to_deal_with_absolute_paths lookupkey absolute path support 2017-12-08 15:35:02 -04:00
annex.genmetadata_should_default_to_true Added a comment 2018-04-05 15:45:52 +00:00
annex_copy_might_not_report_percent-progress_when_it_has_actual_key_file comment 2017-12-05 12:43:57 -04:00
annex_doesn__39__t_fixup_symlinks_when___34__git_commit_path__95__to__95__repo__34___is_used
annex_get_-J_16_via_ssh_stalls_ response 2018-11-12 12:10:40 -04:00
annex_ignores_pushurl_and_uses_only_url_upon___34__copy_--to__34__
annex_init_no_longer_generates_default_description comment 2019-06-25 13:14:12 -04:00
annex_is_not_satisfied_by_full_and_correct_full_download Fix resume of download of url when the whole file content is already actually downloaded 2018-11-12 16:08:47 -04:00
annex_metadata___40__not_--batch__39__ed__41___is_not_aware_of_files_added_via_addurls_--batch response 2018-04-04 12:08:10 -04:00
annex_sets_remote___40__regular_http__41___to_be_ignored_while_running_in_docker_container Added a comment: my bad 2018-11-15 12:34:58 +00:00
annex_sync___40__in_direct_mode_only__41___does_not_actually_update_local_branch__47__tree fix sync bug in direct mode 2018-02-26 14:10:03 -04:00
annex_tries_to_start_old_binaray
annex_unannex__47__uninit_should_handle_copies
annex_view_barfs__fatal__58___Unable_to_add___40__null__41___to_database response 2018-05-15 11:54:02 -04:00
apparent_regression_in_git_annex_p2p_--pair_usage_of_magic_wormhole_invocation add docs about p2p --pair being broken in old versions 2018-07-05 11:52:52 -04:00
aria2c_display_broken_in_git-annex
assistant_bails_when_adding_encrypted_usbdrive_repo_on_mac
assistant_cannot_sync_files_to_empty_indirect_repo Added a comment 2018-11-20 21:56:03 +00:00
assistant_crashes_in_TransferScanner
Assistant_deleted_file_when_merging___40__another_report__41__ Added a comment 2017-08-26 12:19:17 +00:00
assistant_does_not_allow_adding_an_existing_repo
assistant_doesn__39__t_sync_empty_directories
assistant_doesn__39__t_sync_file_permissions Added a comment: no generic solution is possible in indirect mode BUT still would be nice to have a 99% solution 2018-08-03 21:51:22 +00:00
Assistant_drops_files_from_remote_repos_that_it_shouldn__39__t
assistant_expensive_scan_unnecessarily_queues_files
Assistant_has_created_155_semitrusted_repositories
Assistant_having_a_child_git_cat-file_--batch_do_the_same_thing_over_and_over_and_using_a_lot_of_memory
assistant_ignores_foreground_switch
assistant_locked_my_files
Assistant_only_watches_one_repo_on_startup
Assumes_OpenSSH_version_newer_than_debian_stable
Auto-repair_greatly_slows_down_the_machine
autoenable__61__true_seems_to_not_work_any_longer
autostart__47__git-annex.desktop_gets_resurrected
awkward_error_from_annex_whenever_operating_on_a_clone_with_submodules
aws_0.16_breaking_changes
bare_remote_is_not_automatically_synced_to_local_repo analysis 2017-06-07 13:45:18 -04:00
bash__58___git-annex-shell__58___command_not_found Avoid error about git-annex-shell not being found when syncing with -J with a git remote where git-annex-shell is not installed. 2017-06-06 12:57:27 -04:00
Bash_completion_of_filenames_with_spaces bash completion fix 2018-11-12 13:23:05 -04:00
bla__47__.git__47__annex__47__transfer__47__failed__47__download__47__...tmp__58___rename__58___resource_exhausted___40__No_space_left_on_device__41__ Added a comment 2019-02-07 14:02:41 +00:00
Bootstrap3_icons_missing_on_Android
broken_repo_when_inodes_exhausted
Can__39__t_add_a_git_repo_to_git_annex__58_____34__Invalid_path_repo__47__.git__47__X__34___for_many_X
Can__39__t_add_remotes_through_the_web_assistant Merge branch 'master' of ssh://git-annex.branchable.com 2018-11-05 14:39:18 -04:00
can__39__t_build_without_assistant revert a few problem areas of git-annex.cabal patch 2018-09-05 11:47:00 -04:00
Can__39__t_compile_on_FreeBSD__58____Issues_with_System.Posix.Files More FreeBSD build fixes. 2018-09-24 11:25:56 -04:00
Can__39__t_compile_on_FreeBSD__58___alex__44___StateVar__44___SafeSemaphore__44___IfElse_fail Added a comment: Known issue 2019-01-09 09:17:20 +00:00
can__39__t_connect_jabber_with_custom_google_apps_domain
can__39__t_get
Can__39__t_use_adjusted_branch_in_v6__44___if_submodule_already_is_using_this_feature
cannot___40__or_how__63____41___to_pass_socket_path_with_a_space_in_its_path_via_annex-ssh-options
cannot_add_a_files_with_an_accent_in_it
Cannot_build_with_aws_0.17.1 Added a comment 2017-10-05 14:02:03 +00:00
Cannot_build_with_GHC_8.2.1 followup 2017-10-02 12:36:56 -04:00
Cannot_clone_an_annex
cannot_commit___34__annex_add__34__ed_modified_file_which_switched_its_largefile_status_to_be_committed_to_git_now followup 2018-08-29 12:20:24 -04:00
Cannot_delete_remote_when_ssh_sync_fails
cannot_remove___96__.t__96___directory
cannot_talk_with_nextcloud_server Added a comment: thanks! 2019-01-06 04:12:03 +00:00
cause__58___fake_annex_repo___124___result__58___inflated_numcopies___124___workaround__58___initialize_properly
CFBundleShortVersionString_is_not_incremented_with_git-annex.dmg_releases___40__downloads.kitenet.net__41__ Added a comment: Thank you, CFBundleShortVersionString is present and matches the internal git-annex version 2019-08-02 15:57:10 +00:00
CHECKPRESENT_could_check_file_size_as_well
checkpresentkey_batch_stops_at_97_or_98_keys
checkpresentkey_fails_on_read-only_remote Added a comment: readonly special remotes] 2019-05-28 17:25:19 +00:00
checkpresentkey_wrongly_reports_key_absense moreinfo 2019-03-18 13:58:29 -04:00
commitBuffer__58___invalid_argument___40__invalid_character__41__2
Commiting_Files_Containing_Non_Ascii_Char_on_OS_X_
committing_files_into_git_doesn__39__t_work_with_explicitly_given_paths_in_V6
concurrent_git-annex-copy_to_s3_special_remote_fails Added a comment: issues with concurrent copy 2019-08-05 17:53:38 +00:00
configuration_options_for_system_ssh_and_bundled_ssh_are_incompatible
Continual_space_exhaustion_from_syncing_metadata
copy_does_not_reflect_some_failed_copies_in_--json_output
corrupt_backend_upon_sync__63__
Corrupted_.git__47__annex__47__index_when_running_assistant
Corrupted_drive__58___Assistant_seems_consider_files_deleted_and_deletes_them_elsewhere_too
Could_not_read_from_remote_repository
could_webdav_be_more_resilient_to_timeouts__63__ forwarded 2017-08-15 13:53:51 -04:00
Crash_when_disabling_syncing_in_the_webapp
creating_a_plain_directory_where_a_mountpoint_should_have_been
creating_a_remote_server_repository
crippled_filesystem_direct_mode_sync_loop
data_loss_from_dedup_when_v7_unlocked_file_is_duplicated__47__truncated fsck: Detect situations where annex.thin has caused data loss to the content of locked files. 2019-03-18 15:59:43 -04:00
Data_loss_when_copying_files_with_running_assistant Added a comment 2017-09-21 12:56:31 +00:00
DBG__58___running___96____47__Users__47__joey__47__homebrew__47__opt__47__gpg-agent__47__bin__47__gpg-agent__39___for_testing_failed
Deasn__39__t_clean_up_ssh_keys_after_removing_remote_repo
Debian_and_MacOSX_cannot_read_eachother__39__s_S3_credentials
Default_startup_command close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Delete_data__47__update_location_log_when_a_special_remote_fails_to_fsck fsck: Support --json. 2017-06-26 13:40:57 -04:00
Deleting_last_copy_of_files_doesn__39__t_mark_them_dead comment 2018-10-04 13:07:31 -04:00
direct_command_leaves_repository_inconsistent_if_interrupted
direct_mode_fails__44___left_in_an_inconsistent_state
Disconcerting_warning_from_git-annex
does_not_build_on_OpenBSD_5.9
does_not_handle_youtube_playlists Added a comment: youtube feeds are limited 2019-02-10 13:09:55 +00:00
downloads.kitenet.net__47__git-annex__47__OSX__47__current__47___distribution_is_7.20190508_but_7.20190615_expected removed 2019-08-02 15:49:58 +00:00
drop_blows_on_lustre__58___SQLite3_returned_ErrorIO
drop_from_special_hybrid_encryption_remote_fails
dropunused_does_nothing Added a comment 2018-12-06 09:09:48 +00:00
easy_feature_request__58___enable_lan_sync_on_android close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Empty_files_make_git_status_slow v7 bug review and cleanup 2019-08-28 12:20:30 -04:00
Empty_folders_don__39__t_get_remove
enable-tor_failing_on_Android response 2019-01-22 17:43:03 -04:00
Enable__47__paus_syncing_to_remote_ssh_server_with_multiple_directories
encfs_support_--_shouldn__39__t_it_be_treated_as_crippled_already__63__
encryption__61__none_doesn__39__t_work_with_enableremote
error_on_only_repository_copy_deletion
Error_running_git-annex.app_on_OS_X_10.13.1___40__17B1003__41__ OSX app: Work around libz/libPng/ImageIO.framework version skew 2018-03-22 11:53:10 -04:00
Errors_on_Android__58___referenceTable_GDEF_length__61__778__44___referenceTable_GSUB_length__61__6388__44___referenceTable_GPOS_length__61__76868 close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
EvilLinker_needs_to_escape_spaces_in_user_name
Excessively_long_temp_names_preventing___34__get__34___on_Windows Added a comment: similar? 2019-02-27 02:47:57 +00:00
Export_fails_for_files_directly_in_git_repo followup 2017-10-30 14:23:33 -04:00
Exporting_subdirs_fails close already fixed bug (dup) 2017-11-07 17:09:43 -04:00
external_special_remote_protocol_broken_by_key_with_spaces plan 2017-08-17 14:41:21 -04:00
Failing_to_execute_bash_remotes_windows
fails_to_verify_presence_via_http_while_wget_fetches_it_just_fine Disable http-client's default 30 second response timeout when HEADing an url to check if it exists. Some web servers take quite a long time to answer a HEAD request. 2017-08-15 13:56:12 -04:00
false_positives_from_fsck_in_bare_repo
fat_support
fatal__58___Cannot_handle_files_this_big
fatal__58___git-write-tree__58___error_building_trees Added a comment 2018-04-17 03:52:55 +00:00
fatal__58___unable_to_normalize_object_directory update; git bug fixed in pu 2017-11-13 13:11:06 -04:00
file_extension_not_used_for_URIs_from_special_remotes seems to work as desired 2018-10-04 15:03:39 -04:00
file_modification_time_should_be_stored_in_exactly_one_metadata_field Added a comment 2018-04-05 02:11:41 +00:00
filemanager_integration_broken response 2018-04-04 12:37:43 -04:00
Files_disappear_from_locally_paired_annexes_when_edited
fingertree___62____61___0.1.2_causes_build_to_fail_on_reducers Added a comment 2017-10-19 05:50:13 +00:00
fix_git-annex_paths___47___objects___40__repository_not_available__41__ comment 2017-10-30 11:51:22 -04:00
fresh_build_for_neurodebian__58___test_failure add comment 2019-08-16 11:36:33 -04:00
fsck_does_not_detect__47__fix_some_key_directories_correctly Added a comment 2017-12-05 18:26:43 +00:00
fsck_is_required_to_resolve___34__no_other_repository_is_known_to_contain_the_file__34___after_sync followup 2019-02-05 14:56:45 -04:00
Future_proofing_regression__63__ Added a comment 2018-12-20 09:19:15 +00:00
g-a_move_has_force_option_described_twice remove the older move --force, which never behaved as documented and seems useless 2018-05-21 13:21:19 -04:00
gcrypt__58___..but_repository_ID_is_set._Aborting. um 2018-09-14 12:53:39 -04:00
gcrypt_remote__58___every_sync_uploads_huge_manifest Added a comment: gcrypt, git-annex and rsync requires absolute path 2017-12-05 13:49:42 +00:00
gcrypt_repository_not_found Added a comment 2018-05-22 20:54:13 +00:00
gcrypt_rsync_remotes_don__39__t_work Added a comment 2018-11-01 12:02:59 +00:00
gcrypt_special_remote_fails_on_bare_remote_repos
get_--json_fails_whenever_plain_get_works___40__with_https_urls__41__ Added a comment 2017-07-31 19:05:04 +00:00
get_-J___34__fails__34___to_get_files_with_the_same_key idea 2017-10-17 13:39:02 -04:00
get_-J_cannot_be_used_with_password-based_authentication
get_-J_from_ssh_remote_tries_to_lock_in_home_directory__63__ Added a comment 2018-02-10 02:48:14 +00:00
get_-JX__58____transfer_already_in_progress_..._for_some_files Added a comment 2018-03-15 12:47:01 +00:00
get_fails_to_place_v7_unlocked_file_content_into_the_file_tree_in_v7_in_repo_with_detached_HEAD check headRef not Branch.current 2019-07-16 12:36:29 -04:00
Get_gpg_subkey_id_used_for_encryption response 2019-02-07 15:25:55 -04:00
get_over_ssh_fails_with___fd__58__19__58___hClose__58___resource_vanished Added a comment 2018-09-26 00:10:41 +00:00
git-annex-export_treeish_subdir_path_does_not_exist__91____91__done__93____93__ close 2018-08-03 13:35:05 -04:00
git-annex-fsck_fails___34__thread_blocked_indefinitely_in_an_STM_transaction__34__ Added a comment 2019-07-23 20:57:11 +00:00
git-annex-import_declines_to_import_git-ignored_fies comment 2019-03-18 13:21:43 -04:00
git-annex-init_with_no_args_overwrites_existing_repo_description fix repo description setting bugs 2019-05-23 12:51:01 -04:00
git-annex-install_for_Android_crashes_on___34__arm7el__34__ response 2018-10-31 13:50:51 -04:00
git-annex-migrate_fails migrate: Fix failure to migrate from URL keys. (Reversion introduced in version 6.20180926) 2018-10-29 16:36:36 -04:00
git-annex-move_not_using_parallelism__63__ Added a comment 2018-11-12 03:17:48 +00:00
git-annex-shell
git-annex-shell_-c_git-annex-shell_doesn__39__t_work__44___while_git-annex_expects_it_to moreinfo this 2018-08-08 11:05:05 -04:00
git-annex-shell_configlist_doesn__39__t_work_over_SSH Added a comment 2018-07-23 22:37:39 +00:00
git-annex-sync_not_quite_idempotent__63__ Added a comment: another instance of git-annex-sync not being idempotent 2019-08-20 17:08:45 +00:00
git-annex-sync_sometimes_fails_in_submodule_in_V6_adjusted_branch followup 2018-10-26 13:12:06 -04:00
git-annex.linux.6.20180914_-__62___assistant_requires_s3_bucket response 2018-10-08 12:04:57 -04:00
git-annex__58___.git__47__annex__47__keys.tmp__47__db__58___setFileMode__58___permission_denied___40__Operation_not_permitted__41__ Added a comment 2019-06-10 16:52:23 +00:00
git-annex__58_____60__socket__58___16__62____58___hPutBuf__58___resource_vanished___40__Broken_pipe__41__
git-annex__58___content_is_locked__while_trying_to_move_under_NFS_and_pidlock
git-annex__58___fd__58__14__58___hGetLine__58___end_of_file
git-annex__58___unable_to_decommit_memory__58___Invalid_argument
git-annex_adds_unicode_characters_at_end_of_checksum followup 2018-03-06 13:51:06 -04:00
git-annex_addurl___38___CDN__58___curl_does_not_follow analysis and close as misconfiguration 2019-01-21 14:43:32 -04:00
Git-annex_and_Microsoft_Office_files_on_OS_X disable closingTracked on OSX 2017-06-09 14:18:58 -04:00
git-annex_branch_not_being_pushed_after_git-annex_forget
git-annex_branch_shows_commit_with_looong_commitlog
git-annex_can__39__t_compile_on_FreeBSD Added a comment: RTFM 2018-08-16 04:25:27 +00:00
git-annex_can__39__t_compile_on_FreeBSD_using_stack Added a comment: Bug raised 2018-09-16 22:15:23 +00:00
git-annex_can__39__t_find_gpg_if_it__39__s_named_gpg2
git-annex_can_no_longer_copy_files_to_box Added a comment 2017-10-12 00:58:04 +00:00
git-annex_cannot_connect_to_freenet_cloud___40__webdav__41__
git-annex_confuses_Git_with_nested_submodules Added a comment 2018-03-23 15:58:15 +00:00
git-annex_died_of_signal_11_when_syncing_content
git-annex_does_not_install_on_windows_without_admin_rights
git-annex_doesn__39__t_find_adb_device Added a comment 2018-06-13 10:46:25 +00:00
git-annex_drop_fails_to_access_file__58____47____47____47___target_URL_on_Windows
git-annex_fsck_in_quiet_mode_don__39__t_report_the_files_it_failed_to_download Added a comment 2017-08-21 14:17:14 +00:00
git-annex_get_with_umlaut_characters_in_filenames
git-annex_in_nixpkgs_fails_with_git-2.13.0
git-annex_merge_stalls
Git-annex_not_properly_detecting_symlink_capability_in_CryFS init: Display an additional message when it detects a filesystem that allows writing to files whose write bit is not set. 2017-08-28 13:21:18 -04:00
git-annex_precommit_.__gets_stuck_after_likely_interrupted___96__annex_add__96___call update 2019-03-20 12:05:58 -04:00
git-annex_requires_an_SSH_remote_to_have_an_absolute_path Added a comment: Sorry 2018-08-07 14:12:20 +00:00
git-annex_standalone_provides_gpg_but_not_gpg-agent Removed bundled gpg from the Linux standalone build and OSX dmg 2019-03-18 16:31:07 -04:00
git-annex_standalone_runshell_locale_cache_fails_on_too-long_filenames Added a comment 2019-03-18 19:44:08 +00:00
git-annex_sucking_up_all_available_RAM_after_startup Added a comment 2017-07-20 06:16:46 +00:00
git-annex_upgrade_fails Refuse to upgrade direct mode repositories when git is older than 2.22 2019-08-29 15:24:41 -04:00
git-annex_wants_to_repair_because_of_duplicateEntries_in_git_fsck
git-annex_won__39__t_execute_on_WD_My_Cloud_NAS
GIT__95__ANNEX__95__SHELL__95__DIRECTORY_won__39__t_match Better ssh connection warmup when using -J for concurrency. 2018-03-07 17:30:14 -04:00
git_annex___36__command_--help_not_recoginized close bug filed about git-annex from 2014 2017-08-28 13:29:36 -04:00
git_annex_add_out_of_memory__63___mmap_failed__58___No_such_file_or_directory
git_annex_assistant_exits_with_failure
git_annex_assistant_failing_with_ARM_NAS
git_annex_assistant_leaks_a_lot_of_memory
git_annex_cannot_get_my_files_after_clone
git_annex_daemon_crashes_when_authenticating_with_jabber.de
git_annex_enableremote_ignoring_encryption_changes
git_annex_forget_--drop-dead_can_lose_group_information Fix git-annex branch data loss that could occur after git-annex forget --drop-dead 2018-08-06 17:36:30 -04:00
git_annex_fsck_--from_web_removes_all_urls_of_a_file response 2017-11-07 17:06:25 -04:00
git_annex_help_options_not_piped_through_PAGER respond and close 2017-08-28 13:36:08 -04:00
git_annex_import_fails_on_filenames_with_newlines_in_them
git_annex_import_is_dangerous_if_you_have_unused_objects
git_annex_info_fails_on_NFS__58___waitToSetLock__58___resource_exhausted___40__No_locks_available__41__
git_annex_should_check_that_stdout_isatty_when_reporting_progress
git_annex_status_fails_with_submodule_in_direct_mode
git_annex_still_deleting_content_when_merging
git_annex_sync_in_direct_mode_does_not_honor_skip-worktree
git_annex_test_fails forgot to add comment 2017-10-02 11:56:11 -04:00
git_annex_test_fails_when_run_through_powershell
git_annex_testremote_fails_on_OSX_because_native___39__mktemp_-d__39___doesn__39__t_work
git_annex_upgrade_loses_track_of_files_with___34____38____34___character___40__and_probably_others__41__
git_annex_wont_work_with_git-dir_and_work-tree
Git_copy_fails_with_absolute_path_on_mavericks
git_fsck_duplicateEntries_errors_when_using_adjusted_branch urgh 2018-07-17 14:28:15 -04:00
git_index_lock_ comment 2018-12-09 11:14:09 -04:00
git_proxy_uses_ls-files_without_--exclude-standard analysis 2018-05-21 12:14:30 -04:00
git_rename_detection_on_file_move
git_worktree_remove_fails Added a comment 2019-03-18 19:54:05 +00:00
glacier
googlemail
gpg-agent
gpg_goes_to_100__37___cpu_on_bad_input_data
GPG_passphrase_repeated_prompt
GPG_subkeys Added a comment 2017-12-20 22:33:04 +00:00
graft__47__graft_cleanup_commits_--_really_needed__63__ Added a comment: got it 2017-10-30 18:33:20 +00:00
Handling_of_files_inside_and_outside_archive_directory_at_the_same_time
Hard_links_not_synced_in_direct_mode
high_cpu_usage_in_cat-file_and_webapp
How_to_clone_git-annex__63__ close 2017-08-28 13:01:56 -04:00
how_to_copy_tp_multiple_remotes_simultaneously__63__
howto_guarantee_a_single_instance_of_a_special_remote__63__ thoughts 2018-04-03 15:31:08 -04:00
huge_multiple_copies_of___39__.nfs__42____39___and___39__.panfs__42____39___being_created
Hybrid_encryption_can__39__t_generate_the_right_key_after_moving_files followup 2017-06-09 13:11:25 -04:00
if_annex.genmetadata_is_true__44___modification_metadata_is_imported_from_older_file_versions_after_unlock+add don't copy old date metadata when adding new version of a file 2018-04-04 13:58:16 -04:00
importfeed___34__parsing_the_feed_failed__34___without_further_info Added a comment: Thank you very much! 2019-06-20 22:54:50 +00:00
importfeed_bad_request_without_User-Agent__58__ fix User-Agent reversion 2018-07-16 11:56:47 -04:00
importfeed_does_not_work_with_socks_proxy response 2018-02-22 12:49:46 -04:00
Importing__95__Commands__95__Destructive__95__by__95__default Added a comment 2018-07-13 15:04:14 +00:00
importtree_not_supported_in_adb_remote close 2019-04-23 12:42:13 -04:00
Impossible_to_enable_an_existing_gcrypt_repo_in_the_webapp
impossible_to_login_to_the_website_at_times Added a comment 2019-01-01 18:47:59 +00:00
impossible_to_perform___34__read-only__34___git_annex_info_without_write_permissions annex.merge-annex-branches 2018-02-22 14:25:32 -04:00
inAnnex_check_failed_repeatedly_for_present_content_v6 analysis, plan 2018-08-27 13:14:34 -04:00
Inconsistent_results_between_git-annex-fsck_and_git-annex-whereis
Incorrect_escaping_of_file_names_for_smudging Add -- before %f in the smudge/clean filter configuration 2019-03-18 14:12:13 -04:00
indeterminite_preferred_content_state_for_duplicated_file Added a comment: Workaround? 2019-06-08 13:03:50 +00:00
Infinite_loop_when_synchronizing_between_many_machines Added a comment 2017-08-20 15:27:31 +00:00
Initial___34__Make_repository__34___fails_due_to___34__empty_ident_name___40__for___60__email-address__62____41___not_allowed__34__
initial_get_-J_on_exported_S3_bucket_fails analysis 2018-10-22 12:39:31 -04:00
initremote_doesn__39__t_work_in_scripts
Installing_git-annex_on_macOS_10.13_HighSierra_via_brew_install_git-annex_require_to_install_lib_magic_via_the_command_brew_install_lib_magic response 2018-03-16 11:56:34 -04:00
interoperability_issue_between_buster_and_stretch Added a comment: probably fixed indeed 2018-11-12 20:54:05 +00:00
Is_there_any_way_to_rate_limit_uploads_to_an_S3_backend__63__
Issue_fewer_S3_GET_requests
Issue_on_OSX_with_some_system_limits
issue_with_syncing_between_v5_and_v6_repos Added a comment: makes sense 2017-12-12 00:01:37 +00:00
It_is_very_easy_to_turn_git-annex_into_a_zombie
jobs fix git command queue to be concurrency safe 2018-08-28 13:16:33 -04:00
keeps_demanding_ssh_key_even_if_all_sync__39__s_turned_down
leaves_many_stray_processes_on_remote_server Added a comment 2019-02-07 21:10:19 +00:00
Linux_standalone__39__s_metadata_--batch_can__39__t_parse_UTF-8
linux_standalone_git_annex_won__39__t_work_in_a_directory_whose_path_contains___58___or___59__
Linux_standalone_on_armv5tel__58___error__58_____34__git-annex_died_of_signal_4__34__ Added a comment: git-annex on armel now working on Debian unstable (sid) 2019-06-25 10:07:56 +00:00
loadlocale_error_with_standalone_build rename obnoxiously and non-portably long bug report filename 2019-02-15 13:44:46 -04:00
Local_network___40__ssh__41___fails_to_pair__47__sync
Location_change_of_remote_DNS_ignored
Low_disk_space_corrupts_state
MacOSX__58___archive_folders_not_working_as_expected Added a comment 2019-01-01 19:00:08 +00:00
make_install_doesn__39__t_create_git-annex-shell
Make_Setup.hs_work_for_cabal_new-build Makefile: Added install-home target which installs git-annex into the HOME directory 2019-03-18 12:36:03 -04:00
manages_to_incorrectly_add_to_annex_instead_of_git_based_on___34__mimetype__34___-_we_cannot_figure_it_out_why Added a comment: update 2019-04-29 13:41:32 +00:00
Massive_git_add_produces_sqlite_crashes retry when sqlite throws ErrorIO 2018-10-30 18:06:38 -04:00
merge_causes_out_of_memory_on_large_repos
Metadata_charset_not_uniform
metadata_view_does_not_vpop_to_original_view
Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely close bug report, open todo item 2018-10-26 13:03:18 -04:00
migrate_and_move_duplicates_data
migrated_files_not_showing_up_in_unused_list
migrating_to_non-E_backend_still_adds_extensions fix migration bug and make fsck warn 2018-05-23 14:07:51 -04:00
Missing_automounts_block_every_command add remote.<name>.annex-checkuuid 2018-01-10 14:21:18 -04:00
Missing_backend_extension_in_files_with_long_extensions Added a comment 2018-10-12 15:49:01 +00:00
Missing_sanity_check_of_group_names._Special_group_names_should_not_be_allowed. Added a comment 2018-06-04 19:42:30 +00:00
More_build_oddities_under_OpenBSD
Move_out_of_shared_repository_as___34__maintenance_user__34___gives_permission_denied_for_files_edited_by_others
move_violates_numcopies Added a comment 2018-04-11 07:34:43 +00:00
Moved_files_are_not_picked_up_by_the_assistant_on_OS_X
multiple_ssh_prompts__44___and_thread_blocked_indefinitely_in_an___63____63____63___transaction Added a comment 2018-11-19 22:46:01 +00:00
mysterious_dependency_of_git_annex_status_output_of_the_added_file Added a comment: fixed 2018-09-10 18:27:49 +00:00
Nearline_bucket_stopped_working___40__can__39__t_even_HEAD_files__41__
no_git-annex_shell_on_Windows response 2018-02-08 13:16:22 -04:00
No_MonadFail_instance Added a comment 2019-01-11 06:28:32 +00:00
no_prebuilt_package_for_intel_64_architecture Added a comment: links on page 2017-08-22 05:10:11 +00:00
Non-annexed_files_being_annexed_and_not_stored
non-git-annex_symlinks_not_perserved_when_exporting_tree_via_rsync response 2018-06-12 12:54:29 -04:00
non-repos_in_repositories_list___40__+_other_weird_output__41___from_git_annex_status
Offline_editing_in_Android_removes_files_and_creates_links
Old_dependencies_are_causing_pain_with_NixOS_18.09 code review and response 2018-11-05 14:28:02 -04:00
on_encfs__44___.fuse__95__hiddenXXXXX_files_left_behind
On_Lubuntu_14.04_assistant_fails_to_create_new_setup_or_actually_work___40__fixed_by_regular_lxsession_package_update_from_2014-06-30__41__
On_Windows__44___can__39__t_use_a_USB_disk_annex_created_on_Linux
On_Windows__44___can__39__t_use_repository_that_has_a_unix-style_local_remote_configured
One_Client_Not_Syncing_Content
Operating_system_should_be_contained_in___96__git_annex_version__96___output_regardless_if_in_annex_repo_or_not avoid unncessary version output differences in different contexts 2018-06-04 12:26:18 -04:00
OSX__58___Assistant_leaves_repo_in_inconsistent_state
OSX_assistant_fails_to_download_new_file_after_initial_pass
OSX_Assistant_will_not_automatically_drop Added a comment: bare remotes, workflow 2018-05-31 12:50:55 +00:00
OSX_case_insensitive_filesystem
Out_of_memory_error_when_adding_large_files_to_v6_repository Added a comment 2018-06-22 07:53:26 +00:00
Packfile_does_not_match_digest__58___gcrypt_with_assistant Added a comment: A hint? 2017-10-02 02:05:32 +00:00
parallel_copy_fails Added a comment: similar bug report 2019-08-05 17:55:21 +00:00
parallel_copy_to_S3_fails comment 2019-05-23 13:37:47 -04:00
parallel_get_can_fail_some_downloads_and_require_re-getting_
Permission_problem_in_second_user_account_on_Android close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Podcast_filename_encoding_breaks_Android_client
post-receive Added a comment: Thanks 2018-09-25 19:52:03 +00:00
preferred_content__58___include_statement_does_not_allow_spaces_in_filenames
present_files__47__directories_are_dropped_after_a_sync
Problem_setting_up_encrypted_repository_using_the_assistant_with___40__outside_of_git-annex__41___shared_pgp_key
problem_with_upgrade_v2_-__62___v3
Problem_with_windows_version__58___1.9.5.msysgit
problems_with_android_and_gpg close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
proposal_for_timestamp_semantics Added a comment 2018-04-05 21:01:51 +00:00
R__47__O_permissions_are_stalking_me_somehow
Race_condition_between_watch__47__assistant_and_addurl
ran_once_then_stopped_running_opensuse_13.1
random_files_vanishing_when_assistant_gets_restarted
Recover_files_deleted_by_git-annex Added a comment 2018-12-30 22:12:09 +00:00
Recreating_remote_repository__39__s_annex
regression_-_fails_to_drop_._Exit_code_11_wo_--debug__44___and_1_with_--debug back out incorrect IO interleaving change 2018-05-08 13:54:42 -04:00
regression_-_yt__58___prefix_for___34__regular__34___urls fixed 2017-12-11 13:43:52 -04:00
regression__58___fails_to_detect_need_for_pidlock_on_an_NSF_mount init: Catch more exceptions when testing locking. 2019-08-29 12:19:07 -04:00
regression__58___http_downloads_redirecting_to_ftp_are_no_longer_supported add back support for following http to ftp redirects 2019-05-30 16:04:59 -04:00
Regression_in___96__find_--json__96___output Added a comment 2019-07-08 16:37:50 +00:00
regression_with_S3_creds_not_used
Remote_does_not_work_with_UTF-8_filenames close, not a bug in git-annex 2018-10-04 15:25:03 -04:00
remote_files_appear_but_are_unreadable_because_their_symlink_targets_don__39__t_exist
remote_not_showing_up_in_webapp
Remote_repositories_have_to_be_setup_encrypted
remote_tracking_exporttree_importtree_directory fix export subtree reversion 2019-05-06 13:57:13 -04:00
Remote_webapp_on_debian_stretch_not_responding Added a comment: I also found this log 2018-04-17 22:52:15 +00:00
remotes_disappeared
Resource_exhausted
Resource_temporarily_unavailable_when_running_enableremote
rsync__58___protocol_version_mismatch
rsync_fails_with_sync_error__58___syntax_or_usage_error fix link to renamed bug 2019-02-15 13:47:40 -04:00
rsync_fails_with_sync_error__58___syntax_or_usage_error_
s3_InternalIOException__63__
S3_remote___8212___un-embedding_creds__63__
same_uuid_for_remotes_with_same_path_but_different_name close, non-bug 2019-06-26 12:22:55 -04:00
Selfsigned_certificates_with_jabber_fail_miserably
set_metadata_leaks_from_one___40__staged__41___key_to_another_during_rename_of_file Warn when metadata is inherited from a previous version of a file 2017-09-28 12:56:35 -04:00
Set_some_reasonable_requirements_lower-bound_for_linux_standalone_builds__58___no_longer_usable_on_CentOS_6.5
sharedpubkey_is_using_a_different_filename_encryption_method_than_shared Added a comment 2018-07-23 22:35:48 +00:00
should_be_possible_to_use_ssh_hosts_from_.ssh__47__config
Should_try_again_when_network_fails___40__esp._DNS__41__
shouldn__39__t_keep_permissions_of_the_ssh_remote__63__
Show_current_config_of_special_remote Merge branch 'master' of ssh://git-annex.branchable.com 2019-05-20 09:50:56 -04:00
silently_failing_when_attempting_to_add_ignored_files
SmartGit__39__s_Cherry-Pick_function_throws_error_with_git-annex
SMB__58___git_annex_clone_works__44___get_fails_on_transfer_lock Fix bug that prevented transfer locks from working when run on SMB or other filesystem that does not support fcntl locks and hard links. 2017-06-06 14:22:03 -04:00
smudge_errors_on_os-x Added a comment 2019-05-28 03:36:53 +00:00
some_tests_fail_while_running_under_NFS
some_transfers_for_get_-J4_fail_over_ssh__47__rsync_and_require_retry followup 2018-10-03 15:49:35 -04:00
special_characters___34____63____58___on_FAT_partition comment 2019-02-07 15:22:01 -04:00
special_directory_remotes__58___git_annex_copy_fails_if_tmp__47___is_a_symbolic_link_to_another_device Added a comment 2018-11-23 07:33:55 +00:00
special_remote_protocol__58___adding_local_state_variables___40__not_under_git__41__
SSL_repos_does_not_show_up_in_Assistant
standalone_build_is_slightly_out_of_date comment 2018-09-25 12:34:21 -04:00
standalone_debian_pkg_build_fails_in_sid rethrow ExitStatus exceptions 2018-11-19 13:18:08 -04:00
startup_scan_extremely_slow
still_seeing_errors_with_parallel_git-annex-add Added a comment 2019-05-23 17:07:40 +00:00
Strange_case_of_data_loss__44___possibly_linked_to_git-annex_with_encrypted_rsync_remote Added a comment: remote.log 2017-06-11 19:53:27 +00:00
Stress_test
suggests_to_enable_web_remote_even_when_there_is_no_web_urls_for_the_file clean up url removal presence update 2018-10-04 17:35:49 -04:00
sync-git-annex_branch_not_syncing_in_the_assistant
sync_claims_data_loss_but_seems_to_just_lose_tracking Added a comment 2017-06-22 04:55:35 +00:00
sync_on_a_repository_on_removable_media_should_not_leave_ssh_conns_open
Syncing_bare_repository_doesn__39__t_work_after_using_watch_on_Windows Added a comment 2017-08-16 17:10:58 +00:00
Syncing_of_file_contents_seems_to_be_broken_in_recent_versions_of_the_assistant
Synology_NAS__58___timer__95__create__58___Bad_address Added a comment: Synology NAS 6.2.1-23824 2018-10-18 00:00:34 +00:00
Termux__58__Boot_instructions_need_a_bit_of_clarity clarifications 2018-10-26 13:51:15 -04:00
test_suite_fails_on_windows Added a comment 2019-08-12 20:15:02 +00:00
The_S3_special_remote_limits_HTTPS_support_to_port_443 S3: Added protocol= initremote setting, to allow https to be used on a non-standard port 2019-03-22 12:17:05 -04:00
Three_tests_fail_when_annex.backends_is_defined
Too_difficult_if_not_impossible_to_explicitly_add__47__keep_file_under_git___40__not_annex__41___in_v6_without_employing_.gitattributes comment 2018-11-19 13:17:42 -04:00
too_many_ssh_connections_during_sync_of_gcrypt_remotes
tor_setup_needs_a_unique_magic-wormhole_appid
touch.hsc_has_problems_on_non-linux_based_systems
Transfers_continue_after_daemon_stopped
TransferScanner_crashed__58___fd__58__59__58___hGetLine__58___end_of_file
Tries_to_upload_to_remote_although_remote_is_dead
unable_to_access_annexed_files_from_a_git_repo_website_serving_via___34__smart_HTTP__34__ Added a comment 2018-10-05 04:30:31 +00:00
Unable_to_get__47__addurl_to_http_link__58___download_failed__58___InvalidHeader___34__preload__34__ followup 2019-04-10 10:25:13 -04:00
Unable_to_setup_gcrypt_Remote_with_encryption__61__shared Added a comment: Workaround 2018-12-04 19:37:38 +00:00
Unable_to_take_transfer_lock followup 2017-10-02 12:36:56 -04:00
unannex__58___Cannot_proceed_with_uncommitted_changes_staged_in_the_index Added a comment: User expectations and what git annex unannex does. 2017-07-24 08:06:55 +00:00
Unchanged_files_are_detected_as_modified_in_unlocked_branch retitle; known bug 2017-11-09 12:00:11 -04:00
unclear_why_annex_fails_to_get_a_file_from_a_public_S3_bucket_where_it_exported_before Added a comment 2018-09-25 17:58:25 +00:00
UnicodeDecodeError_while_archiving_files_with_git-annex_to_glacier
unlock_should_warn_if_file_isn__39__t_in_repo
unRAID_shares_treated_as_a_crippled_filesystem followup; close 2017-06-06 15:36:10 -04:00
Upgrade_impossible_om_Mac_OSX
upgrade_to_version_7_not_going_well__44___bup_remote_missing_its_uuid Added a comment 2018-12-05 22:58:57 +00:00
Upload_to_box_very_slow Added a comment: Second test (without line 134) 2017-10-09 14:40:45 +00:00
Upload_to_S3_fails_
URL_key_potential_data_loss Added a comment: storing checksums for non-checksum keys in metadata 2019-08-16 16:06:29 +00:00
Uses_rsync_instead_of___96__cp_--reflink__61__auto__96___on_volumes_of_the_same_BTRFS_partition Added a comment 2019-07-30 15:18:57 +00:00
using_old_remote_format_generates_irritating_output
v6_-_under_subdir__58___git_add___34__whines__34____44___git_commit___34__blows__34__ fix reversions due to undocumented and buggy git behavior 2018-09-11 15:54:21 -04:00
v6__58___git_status__47__add_after_unlock_is_linear_to_the_file_size comment 2017-10-30 13:15:09 -04:00
v6__58___write_permission_on_annex_object_if_unlocked__44___modified__44___and_readded make linkToAnnex freezeContent the object file 2018-09-05 15:27:22 -04:00
v6_appears_to_not_thin
v6_hardlinking_is_not_stable_across_lock__47__unlock_or_cloning When annex.thin is set, allow hard links to be made between executable work tree files and annex objects. 2018-10-26 13:51:43 -04:00
v6_smudge_filter_breaks_git_diff_for_files_outside_the_repository comments 2018-11-15 13:36:20 -04:00
v7_fails_to_fetch_files_on_FAT_filesystem Added a comment: thanks! 2018-12-04 17:10:16 +00:00
v7_unlock_big_file__58___out_of_memory comment 2019-03-18 11:20:29 -04:00
vicfg_and_description_often_not_propagated
Watcher_crashed__58___.git__92__annex__92__objects__92__...sha256....pdf__92____58___openTempFile__58___does_not_exist
Watcher_crashed_in_Android_on___47__storage__47__sdcard1_-_bug__63__
webdav_fails___40__server__58___radicale_0.9-1__41__
webdav_remote_fails_on_pound_signs close 2019-02-07 15:14:09 -04:00
weird_bug_with_annex_unlock_with_annex.thin_true_about_hard_links comment 2019-03-22 09:30:49 -04:00
weird_interaction_between___34__required__34___and___34__numcopies__34___on_duplicate_files followup 2018-11-13 13:50:15 -04:00
weird_unicode_bug_on_windows
When_stopping___96__git_annex_get__96___files_left_broken
whereis_claims_file_is_not_here__44___but_it_is_available_both_here_and_in_another_remote
whereis_outputs_no_informaiton_for_unlocked_files
whereis_shouldn__39__t_just_crash_if_one_of_the_special_remotes___34__drivers__34___is_not_available response 2018-10-04 15:18:22 -04:00
why_are_all_those_files_modified rename forum/why_are_all_those_files_modified.mdwn to bugs/why_are_all_those_files_modified.mdwn 2018-12-11 17:09:47 +00:00
windows__58___autostart_for_annex_64bit_looks_under_x86 Added a comment 2019-01-21 19:17:29 +00:00
Windows__58___Doesn__39__t_want_to_handle_files_with_2_dots_in_filename
Windows__58___git_annex_get_failed
Windows___58___git-annex__58___failed_to_read_sha_from_git_write-tree
Windows_build_test_failures
Windows_installer_includes_curl_and_wget__44___but_not_required_DLLs
windows_support_totally_bitrotted Fix path separator bug on Windows that completely broke git-annex since version 7.20190122. 2019-02-18 17:16:39 -04:00
Windows_to_Linux_clone_-_Windows_drive_letters_cause_git_annex_get_to_fail followup; close 2017-10-30 13:10:07 -04:00
withOtherTmp_file_escapes Added a comment 2019-05-14 19:23:33 +00:00
Wrong_backend_extension_in_files_with_multiple_dots
wrong_permissions_of_unused__44___badunused_and_tmpunused__63__ Added a comment 2018-01-09 08:46:44 +00:00
WSL_adjusted_braches__58___smudge_fails_with_sqlite_thread_crashed_-_locking_protocol followup 2019-08-27 15:41:31 -04:00
zsh_completions_installed_to_location_not_in_fpath Added a comment 2019-08-15 21:15:09 +00:00
--backend_for_init_is_in_no_effect__63__.mdwn initial whining about init --backend 2017-07-12 23:11:20 +00:00
--shared_setting_of_git_causes_annex__39__ed_files_to_be_writeable__33__.mdwn initial report 2017-10-10 17:06:10 +00:00
2_ssh_connection_prompts_for_password.mdwn initial whining about 2 ssh prompts 2017-08-12 04:06:19 +00:00
3_tests_fail_while_trying_to_build_fresh_git_annex_6.20181011+git109-gff9ba1f4d.mdwn fix strange test failure 2018-10-22 16:51:09 -04:00
7.20181105+git172-g76fc9af4_not_buildable.mdwn close 2018-11-20 11:45:30 -04:00
7.20181211+git29-gab4a1bed9_fails_tests_during_neurodebian_build.mdwn close old bug 2019-03-22 10:32:24 -04:00
8_unit_tests_fail.mdwn
20151116_tests_fail_on_OS_X.mdwn
__34__Adding_4923_files__34___is_really_slow.mdwn
__34__byte-progress__34___could_jump_down_upon_initiating_re-download_--_report_actual_one_first__63__.mdwn
__34__commitBuffer__58___invalid_argument___40__invalid_character__41____34___during___34__git_annex_sync__34__.mdwn
__34__content_is_locked__34___with_git-annex-drop_-J48.mdwn catch all (non-async) exceptions when running a commandAction 2018-11-15 15:59:43 -04:00
__34__error__58___invalid_object__34____44___after_add__59___cannot_commit.mdwn
__34__git-annex__58___direct__58___1_failed__34___on_Windows.mdwn
__34__git_annex_adjust__34___does_not_respect_utf8_in_the_commit_author_field.mdwn 2018-12-12 09:39:51 +00:00
__34__git_status__34___thread_blocked_indefinitely_in_an_MVar_operation.mdwn 2019-02-11 21:39:33 +00:00
__34__git_update-index_--refresh_bigfile__34___fails_with___34__fatal__58___Out_of_memory__44___realloc_failed__34__.mdwn 2018-12-11 18:41:14 +00:00
__34__invalid_object__34___errors_cropping_up.mdwn
__34__metadata_only__34___git-remote-gcrypt_syncing_files_anyway.mdwn
__34__sha256sum_failed__34___for_some_files_with_newest_Android_client.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
__34__Unsupported_url_scheme__34___message_when_trying_to_cconnect_to_ftp_server.mdwn add back support for ftp urls 2019-05-30 14:51:34 -04:00
__39__add__39___results_in_max_cpu__44___long_run_and_huge_repo.mdwn
__39__annex_add__39___locks_unmodified_file_in_V5_but_not_V6.mdwn change v6 git-annex add of staged unmodified unlocked file 2018-09-12 14:00:05 -04:00
__39__web__39___remote_does_not_work_on_Android.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
__91__Android__93_____34__Make_Camera_Repository__34___button_goes_to_blank_page.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
__91__meta__93___ikiwiki_is___42__slow__42__.mdwn 2017-08-26 12:20:23 +00:00
__91__PATCH__93___Build_Build__47__InstallDesktopFile_at___34__make_all__34___time.mdwn Makefile improvement for sudo make install. Thanks, Eric Siegerman 2017-11-07 16:29:58 -04:00
__91__PATCH__93___Cosmetic__58___clarify_a_warning_message.mdwn add warning: to make clear this is not an error 2017-12-11 14:28:39 -04:00
__91__PATCH__93___Cosmetic__58___only_print_ikiwiki_command_if_it__39__s_run.mdwn simplify ikiwiki docs build testing and output 2017-11-07 16:36:01 -04:00
_git-annex__58___bad_url_ssh__58____47____47__git__64__gitlab.com__58____126____47__gitlabname__47__reponame.git.mdwn
_impossible_to_switch_repositories_on_android__in_webapp.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Aborts_with_SQLite_error_when_dropping_contents.mdwn
acl_not_honoured_in_rsync_remote.mdwn
adb_special_remote_fetches_but_does_not_add_all_files.mdwn 2019-05-10 11:29:10 +00:00
add_-J_fails_with_not_found.mdwn close bug 2017-10-16 14:13:08 -04:00
Add_custom-setup_stanza_to_.cabal_file.mdwn finally really add back custom-setup stanza 2017-12-31 16:36:39 -04:00
Add_day_to_metadata..mdwn Add day to metadata when annex.genmetadata is enabled. 2017-10-25 15:11:38 -04:00
Add_explicit_retries_for_curl__47__wget_on___34__transient__34___errors__63__.mdwn close 2018-03-29 13:32:02 -04:00
add_fails_with_v6_repo_when_four_levels_deep.mdwn work around git bug 2018-07-17 14:27:39 -04:00
add_FILE__report_line_is_printed_twice___40__in_a_particular_scenario__41__.mdwn initial report on twice the add line reported 2019-04-26 14:01:54 +00:00
Add_support_for_skein512__95__256_hash.mdwn
added_branches_makes___39__git_annex_unused__39___slow.mdwn
adding_a_remote_server_fails.mdwn
Adding_metadata.mdwn typo 2017-08-17 19:51:39 -04:00
adding_remote_server_using_ssh_on_a_4.1_device.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Adding_torrent_via_addurl_fails.mdwn close 2018-01-15 13:32:32 -04:00
Adding_zip_or_7z_or_tar_archive_builds_for_windows.mdwn
adds_file_destined_for_annex_into_git_in___39__addurl__39__.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
addurl_--batch__--with-files_doesn__39__t_add_file_into_git_until_pipe_is_closed.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
addurl_--batch___40__--json_or_not__41___doesn__39__t_report_failure_correctly_if_non-annexed_file_exists.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
addurl_--batch_decides_to_talk_to_ssh_remotes_for_some_reason.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
addurl_--file__causes_file_redownload_even_if_it_already_present.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
addurl_fails_with_non-youtube_url_with___34__This_url_is_supported_by_youtube-dl__44___but_youtube-dl_could_potentially_access_any_address__34__.mdwn addurl --file: Fix a bug that made youtube-dl be used unneccessarily when adding an html url that does not contain any media. 2019-03-18 13:34:29 -04:00
addurl_results_in_different_file_to_wget.mdwn fix http-client gzip decompression bug 2018-05-21 15:10:25 -04:00
addurl_unittest_failing_under_windows.mdwn
addurl_youtube-dl_behavior_change.mdwn repeated addurl behavior reversion fix 2017-12-31 14:55:51 -04:00
Adjust_--unlock_not_using_--reflink__63__.mdwn 2017-11-25 00:03:24 +00:00
after_git_annex_add_and_commit__44___git_annex_fsck_fails__58___no_known_copies.mdwn
All_inodes_eaten.mdwn
Allow_automatic_retry_git_annex_get.mdwn
android_4.3_install_failed_.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_4.4_install_fails_with_permission_denied_errors.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_6.0_compatibility.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android__44___unable_to_start_browser_.mdwn reopen 2019-03-22 09:44:40 -04:00
Android__58___addurl__58___Network.BSD.getProtocolByName__58___does_not_exist___40__no_such_protocol_name__58___tcp__41__.mdwn clarify it's the new android installer 2019-06-10 16:38:44 +00:00
Android__58___Cannot_create_repo_on_external_sd_card.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
android__58___cannot_link_executable.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android__58___Several_error_messages___47___warnings.mdwn
Android__58___use___47__data__47____8230___for_git-annex.home__63__.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android___58___handling_DCIM__47__Camera_not_being_configurable.mdwn
Android_can__39__t_sync_files_with_utf-8_characters_in_names.mdwn
Android_cannot_setup_gitlab_repo_due_to_ECDSA_key.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_client_deletes_everything.mdwn
Android_CM_5.1_ANDROID__95__ROOT_not_set.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
android_ed25519_algorithm.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Android_install_doesn__39__t_permanently_add_to___36__PATH.mdwn Android: Improve installation process when the user's login shell is not bash. 2019-05-23 13:06:31 -04:00
android_installation_fails.mdwn Android: For armv71 architecture, use the armel build 2019-01-22 11:50:29 -04:00
Android_installation_is_missing___36__PATH_setup.mdwn source git-annex-install so it it can add git-annex to PATH 2018-10-22 13:22:10 -04:00
Android_version_converts_plain_git_file___40__git_add__41___to_git-annex_file.mdwn
annex-checkuuid_renders_remotes_inaccessible.mdwn fix annex-checkuuid 2018-06-04 16:52:22 -04:00
annex-lookupkey_fails_to_deal_with_absolute_paths.mdwn lookupkey absolute path support 2017-12-08 15:35:02 -04:00
annex.autocommit_seems_ignored_for_new_files.mdwn
annex.genmetadata_should_default_to_true.mdwn 2018-03-17 17:36:38 +00:00
annex_add_ignores_.-prefixed_directories.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
annex_copy_might_not_report_percent-progress_when_it_has_actual_key_file.mdwn Display progress meter when uploading a key without size information 2017-11-14 16:40:49 -04:00
annex_doesn__39__t_fixup_symlinks_when___34__git_commit_path__95__to__95__repo__34___is_used.mdwn
annex_drop_fails_to_determine_availability_on_a_http_url_redirecting_to_ftp.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
annex_drop_is_not___34__in_effect__34___for_load_which_was___34__addurl_--batch__34__ed_but_not_yet_committed.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
annex_get_-J_16_via_ssh_stalls_.mdwn Fixed some other potential hangs in the P2P protocol 2018-11-06 14:52:32 -04:00
annex_ignores_pushurl_and_uses_only_url_upon___34__copy_--to__34__.mdwn
annex_init_no_longer_generates_default_description.mdwn Merge branch 'master' of ssh://git-annex.branchable.com 2019-06-20 20:32:18 -04:00
annex_is_not_satisfied_by_full_and_correct_full_download.mdwn Fix resume of download of url when the whole file content is already actually downloaded 2018-11-12 16:08:47 -04:00
annex_metadata___40__not_--batch__39__ed__41___is_not_aware_of_files_added_via_addurls_--batch.mdwn initial report 2018-03-27 15:34:03 +00:00
annex_remotedaemon_100__37___cpu_hungry.mdwn
annex_sets_remote___40__regular_http__41___to_be_ignored_while_running_in_docker_container.mdwn followup and close 2018-11-13 13:34:12 -04:00
annex_sync___40__in_direct_mode_only__41___does_not_actually_update_local_branch__47__tree.mdwn fix sync bug in direct mode 2018-02-26 14:10:03 -04:00
annex_tries_to_start_old_binaray.mdwn
annex_unannex__47__uninit_should_handle_copies.mdwn
annex_view_barfs__fatal__58___Unable_to_add___40__null__41___to_database.mdwn reuse hashes of dotfiles/dirs/submodules when entering view 2018-05-14 15:35:20 -04:00
apparent_regression_in_git_annex_p2p_--pair_usage_of_magic_wormhole_invocation.mdwn add docs about p2p --pair being broken in old versions 2018-07-05 11:52:52 -04:00
aria2c_display_broken_in_git-annex.mdwn
assistant_bails_when_adding_encrypted_usbdrive_repo_on_mac.mdwn
assistant_cannot_sync_files_to_empty_indirect_repo.mdwn 2018-11-12 16:51:12 +00:00
assistant_crashes_in_TransferScanner.mdwn
Assistant_deleted_file_when_merging___40__another_report__41__.mdwn 2017-08-23 05:47:39 +00:00
assistant_does_not_allow_adding_an_existing_repo.mdwn
assistant_does_not_always_use_repo_cost_info_when_queueing_downloads.mdwn
Assistant_does_not_update_adjusted_branch.mdwn
assistant_doesn__39__t_sync_empty_directories.mdwn
assistant_doesn__39__t_sync_file_permissions.mdwn
Assistant_drops_files_from_remote_repos_that_it_shouldn__39__t.mdwn
assistant_expensive_scan_unnecessarily_queues_files.mdwn
Assistant_has_created_155_semitrusted_repositories.mdwn
Assistant_having_a_child_git_cat-file_--batch_do_the_same_thing_over_and_over_and_using_a_lot_of_memory.mdwn
assistant_ignores_foreground_switch.mdwn
Assistant_is_stuck_with___39__fuzztest__39__.mdwn 2019-06-02 10:16:58 +00:00
assistant_locked_my_files.mdwn
assistant_memory_leak.mdwn
Assistant_only_watches_one_repo_on_startup.mdwn
assistant_should_set_up_dedicated_ssh_keys_for_remotes_using_the_standalone_tarball.mdwn
assistant_sometimes_does_not_merge_changes_from_remote.mdwn
Assistant_temporary_delete_and_recommit_files.mdwn 2018-04-09 13:30:48 +00:00
Assumes_OpenSSH_version_newer_than_debian_stable.mdwn
Attempting_to_repair_repository_almost_every_day.mdwn
Auto-repair_greatly_slows_down_the_machine.mdwn
autoenable__61__true_seems_to_not_work_any_longer.mdwn
automatically_adding_metadata_fails_on_files_with_UTF-8_umlauts.mdwn Fix metadata hook script to support non-ascii characters 2018-02-26 12:58:37 -04:00
autostart__47__git-annex.desktop_gets_resurrected.mdwn
awkward_error_from_annex_whenever_operating_on_a_clone_with_submodules.mdwn
aws_0.16_breaking_changes.mdwn
bare_remote_is_not_automatically_synced_to_local_repo.mdwn
bash__58___git-annex-shell__58___command_not_found.mdwn close 2017-06-06 13:37:18 -04:00
Bash_completion_of_filenames_with_spaces.mdwn bash completion fix 2018-11-12 13:23:05 -04:00
bla__47__.git__47__annex__47__transfer__47__failed__47__download__47__...tmp__58___rename__58___resource_exhausted___40__No_space_left_on_device__41__.mdwn 2019-02-07 10:18:32 +00:00
Bootstrap3_icons_missing_on_Android.mdwn
broken_repo_when_inodes_exhausted.mdwn
btshowmetainfo_required_although_built_with_torrentparser.mdwn Make bittorrent special remote work w/o btshowmetainfo installed when it was build with torrentparser. Thanks, Robert Schütz 2018-11-27 12:31:06 -04:00
Build_failure__58___Utility__47__QuickCheck.hs__58__38__58__10__58___error__58___Duplicate_instance_declarations.mdwn close 2017-06-17 13:20:31 -04:00
Build_failure_with_feed___62____61___1.0.0.0.mdwn close 2017-09-09 13:08:42 -04:00
Button_to_cancel_conistency_checks.mdwn
Can__39__t_add_a_git_repo_to_git_annex__58_____34__Invalid_path_repo__47__.git__47__X__34___for_many_X.mdwn
Can__39__t_add_remotes_through_the_web_assistant.mdwn webapp: Fixed a crash when adding a git remote. 2018-10-29 16:01:08 -04:00
can__39__t_build_without_assistant.mdwn 2018-09-05 12:18:54 +00:00
Can__39__t_compile_on_FreeBSD__58____Issues_with_System.Posix.Files.mdwn More FreeBSD build fixes. 2018-09-24 11:25:56 -04:00
Can__39__t_compile_on_FreeBSD__58___alex__44___StateVar__44___SafeSemaphore__44___IfElse_fail.mdwn compiler toolchain being broken in freebsd update is not a bug in git-annex 2019-01-01 12:09:40 -04:00
can__39__t_connect_jabber_with_custom_google_apps_domain.mdwn
can__39__t_get.mdwn
can__39__t_launch_assistant_on_latest_OSX_build.mdwn avoid uname -o on !linux and catch any exception from it 2018-05-08 14:06:19 -04:00
Can__39__t_use_adjusted_branch_in_v6__44___if_submodule_already_is_using_this_feature.mdwn
cannot___34__install__34___standalone_git_annex_within_afs_mount.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
cannot___40__or_how__63____41___to_pass_socket_path_with_a_space_in_its_path_via_annex-ssh-options.mdwn
cannot_add_a_files_with_an_accent_in_it.mdwn
Cannot_add_gcrypt_remote_in_webapp__58___gcrypt_backend.mdwn
cannot_add_local_readonly_repo_through_the_webapp.mdwn
Cannot_build_with_aws_0.17.1.mdwn Fix build with aws-0.17. 2017-10-11 10:57:20 -04:00
Cannot_build_with_GHC_8.2.1.mdwn git-annex.cabal: Deal with breaking changes in Cabal 2.0 2017-08-18 11:08:58 -04:00
Cannot_clone_an_annex.mdwn
cannot_commit___34__annex_add__34__ed_modified_file_which_switched_its_largefile_status_to_be_committed_to_git_now.mdwn initial report about failure to commit 2018-08-08 20:07:27 +00:00
Cannot_delete_remote_when_ssh_sync_fails.mdwn
cannot_remove___96__.t__96___directory.mdwn
cannot_talk_with_nextcloud_server.mdwn forgot to sign that bug! will try to test this as soon as the next release comes out - thanks! 2018-12-11 16:51:18 +00:00
cause__58___fake_annex_repo___124___result__58___inflated_numcopies___124___workaround__58___initialize_properly.mdwn
CFBundleShortVersionString_is_not_incremented_with_git-annex.dmg_releases___40__downloads.kitenet.net__41__.mdwn OSX dmg: Put git-annex's version in the Info.plist file. 2019-06-26 12:10:35 -04:00
CHECKPRESENT_could_check_file_size_as_well.mdwn
checkpresentkey_batch_stops_at_97_or_98_keys.mdwn
checkpresentkey_fails_on_read-only_remote.mdwn strange interaction of checkpresentkey and annex-readonly=true 2019-05-24 03:05:32 +00:00
checkpresentkey_wrongly_reports_key_absense.mdwn bug report for checkpresentkey 2019-02-14 06:01:38 +00:00
clash_of_-j__in_copy_for_--json_--json-progress.mdwn
commitBuffer__58___invalid_argument___40__invalid_character__41__2.mdwn
Commiting_Files_Containing_Non_Ascii_Char_on_OS_X_.mdwn
committing_files_into_git_doesn__39__t_work_with_explicitly_given_paths_in_V6.mdwn v6: avoid accidental conversion when annex.largefiles is not configured 2018-08-27 14:51:10 -04:00
concurrent_git-annex-copy_to_s3_special_remote_fails.mdwn 2019-08-03 22:42:50 +00:00
concurrent_git-annex_processes_can_lead_to_locking_issues.mdwn
configuration_options_for_system_ssh_and_bundled_ssh_are_incompatible.mdwn
confirmed.mdwn
Continual_space_exhaustion_from_syncing_metadata.mdwn
copy_does_not_reflect_some_failed_copies_in_--json_output.mdwn
corrupt_backend_upon_sync__63__.mdwn
Corrupted_.git__47__annex__47__index_when_running_assistant.mdwn
Corrupted_drive__58___Assistant_seems_consider_files_deleted_and_deletes_them_elsewhere_too.mdwn
Corrupted_git___40__but_not_annex__41___controlled_files.mdwn
Could_not_read_from_remote_repository.mdwn
could_standalone_copy_of_git_ship__47__deploy_hooks_samples_as_well_as_stock_git__63__.mdwn
could_webdav_be_more_resilient_to_timeouts__63__.mdwn initial concern about timeouts 2017-07-13 16:39:57 +00:00
Crash_when_disabling_syncing_in_the_webapp.mdwn
creating_a_plain_directory_where_a_mountpoint_should_have_been.mdwn
creating_a_remote_server_repository.mdwn
Creating_an_encrypted_S3_does_not_check_for_presence_of_GPG.mdwn
crippled_filesystem_direct_mode_sync_loop.mdwn
crypto-api_is_a_global_dependency_because_of_Utility.AuthToken.mdwn
dashed_ssh_hostname_security_hole.mdwn i believe you meant -o here, not -e. -e is escape character, while -o is to change options. 2017-09-27 16:38:07 +00:00
data_loss_from_dedup_when_v7_unlocked_file_is_duplicated__47__truncated.mdwn fsck: Detect situations where annex.thin has caused data loss to the content of locked files. 2019-03-18 15:59:43 -04:00
data_loss_on_Windows__58___git_annex_sync_--no-content_drops_last_copy_unexpectedly.mdwn
Data_loss_when_copying_files_with_running_assistant.mdwn 2017-08-20 14:16:55 +00:00
DBG__58___running___96____47__Users__47__joey__47__homebrew__47__opt__47__gpg-agent__47__bin__47__gpg-agent__39___for_testing_failed.mdwn
Deasn__39__t_clean_up_ssh_keys_after_removing_remote_repo.mdwn
Debian_and_MacOSX_cannot_read_eachother__39__s_S3_credentials.mdwn
default_cabal_install_on_OSX_lacks_S3.mdwn
Default_startup_command.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Delete_data__47__update_location_log_when_a_special_remote_fails_to_fsck.mdwn 2017-06-14 03:21:04 +00:00
Deleting_last_copy_of_files_doesn__39__t_mark_them_dead.mdwn 2018-10-02 14:15:24 +00:00
direct_command_leaves_repository_inconsistent_if_interrupted.mdwn
direct_mode_fails__44___left_in_an_inconsistent_state.mdwn
direct_mode_merge_interrupt.mdwn
Direct_mode_repositories_still_use_symlinks_sometimes.mdwn
direct_mode_should_refuse_to_merge_with_illegal_filenames.mdwn
direct_mode_to_v7_upgrade_bug.mdwn fix bugs involving v7 unlocked files and direct mode 2018-12-11 13:47:35 -04:00
direct_mode_upgrade_with_deleted_file.mdwn update location log for missing content during direct mode conversion 2019-08-27 13:54:21 -04:00
Disconcerting_warning_from_git-annex.mdwn
does_not_build_on_OpenBSD_5.9.mdwn close old openbsd build bugs 2018-08-17 16:18:40 -04:00
does_not_complain__47__fail_if_by_mistake_option_value_passed_within_arg_for__-c.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
does_not_handle_youtube_playlists.mdwn close 2018-04-04 11:59:15 -04:00
Doesn__39__t_build_with_hinotify__44__0.3.10___47___fsnotify__44__0.2.1.2.mdwn 2018-04-29 03:24:24 +00:00
done.mdwn list all (non-archived) done bugs, not only most recent 10 2018-05-31 11:48:53 -04:00
downloads.kitenet.net__47__git-annex__47__OSX__47__current__47___distribution_is_7.20190508_but_7.20190615_expected.mdwn close 2019-07-08 09:02:01 -04:00
drop_blows_on_lustre__58___SQLite3_returned_ErrorIO.mdwn
drop_from_special_hybrid_encryption_remote_fails.mdwn
dropkey_--batch_--json_--force_is_always_succesfull.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
dropunused_does_nothing.mdwn close 2018-12-05 12:14:33 -04:00
duplicate.mdwn 2018-11-11 21:39:56 +00:00
duplicate_progress_reports_in_parallel___39__get__39__.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
easy_feature_request__58___enable_lan_sync_on_android.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Empty_files_make_git_status_slow.mdwn
Empty_folders_don__39__t_get_remove.mdwn
enable-tor_failing_on_Android.mdwn 2019-01-02 16:31:30 +00:00
Enable__47__paus_syncing_to_remote_ssh_server_with_multiple_directories.mdwn
encfs_support_--_shouldn__39__t_it_be_treated_as_crippled_already__63__.mdwn
Encoding_error_in_webapp.mdwn 2017-06-23 09:33:23 +00:00
encryption__61__none_doesn__39__t_work_with_enableremote.mdwn
error_on_only_repository_copy_deletion.mdwn
Error_running_git-annex.app_on_OS_X_10.13.1___40__17B1003__41__.mdwn close 2018-03-22 13:23:08 -04:00
Errors_on_Android__58___referenceTable_GDEF_length__61__778__44___referenceTable_GSUB_length__61__6388__44___referenceTable_GPOS_length__61__76868.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
EvilLinker_needs_to_escape_spaces_in_user_name.mdwn
Excessively_long_temp_names_preventing___34__get__34___on_Windows.mdwn
Export_fails_for_files_directly_in_git_repo.mdwn Fix exporting of non-annexed files to external special remotes. 2017-10-30 12:47:13 -04:00
Exporting_subdirs_fails.mdwn close already fixed bug (dup) 2017-11-07 17:09:43 -04:00
exporttree_interaction_with_adjusted_branch.mdwn bug report from MacGyver.mdwn 2019-06-07 19:34:21 -04:00
external_remote_hGetContents_handle_error.mdwn
external_special_remote_protocol_broken_by_key_with_spaces.mdwn external: nice error message for keys with spaces in their name 2017-08-17 16:18:34 -04:00
Failing_to_execute_bash_remotes_windows.mdwn
fails_to___96__get__96___in_parallel_for_a_freshly_clone_from_public_s3_bucket_where_versioning_info_was_forgotten.mdwn 2019-08-03 13:42:18 +00:00
fails_to_verify_presence_via_http_while_wget_fetches_it_just_fine.mdwn Disable http-client's default 30 second response timeout when HEADing an url to check if it exists. Some web servers take quite a long time to answer a HEAD request. 2017-08-15 13:56:12 -04:00
false_positives_from_fsck_in_bare_repo.mdwn close old unreproducible bug report 2018-11-15 15:17:49 -04:00
fat_support.mdwn
fatal__58___Cannot_handle_files_this_big.mdwn
fatal__58___git-write-tree__58___error_building_trees.mdwn close 2018-05-15 12:07:35 -04:00
fatal__58___unable_to_normalize_object_directory.mdwn close, fixed in git 2018-09-25 12:54:17 -04:00
feed_dependency.mdwn Support building with feed-1.0, while still supporting older versions. 2017-08-28 12:29:28 -04:00
file_extensions_of___62__4_chars_ignored_by___42__E_backends.mdwn close dup 2018-10-04 14:46:43 -04:00
file_modification_time_should_be_stored_in_exactly_one_metadata_field.mdwn 2018-03-17 18:00:08 +00:00
filemanager_integration_broken.mdwn 2018-03-23 13:37:32 +00:00
Files_disappear_from_locally_paired_annexes_when_edited.mdwn
Files_reappear_after_delete.mdwn
Files_unaccessible_in___40__some__63____41___views_on_a_crippled_filesystem.mdwn 2018-05-18 14:02:29 +00:00
find_with_batch_does_not_apply_matching_options.mdwn make --batch honor matching options 2018-08-08 12:07:06 -04:00
fingertree___62____61___0.1.2_causes_build_to_fail_on_reducers.mdwn close 2017-10-11 10:48:23 -04:00
fix_git-annex_paths___47___objects___40__repository_not_available__41__.mdwn 2017-10-24 19:55:06 +00:00
forwarded.mdwn
fresh_build_for_neurodebian__58___test_failure.mdwn Fix intermittent failure of the test suite 2019-08-16 11:11:55 -04:00
fsck_does_not_detect__47__fix_some_key_directories_correctly.mdwn crossed away comment on hash levels 2017-09-13 14:27:19 +00:00
fsck_is_required_to_resolve___34__no_other_repository_is_known_to_contain_the_file__34___after_sync.mdwn 2019-02-01 12:04:06 +00:00
Future_proofing_regression__63__.mdwn 2018-12-18 07:22:48 +00:00
g-a_move_has_force_option_described_twice.mdwn close 2018-05-21 15:06:29 -04:00
gcrypt__58___..but_repository_ID_is_set._Aborting..mdwn 2018-09-13 04:24:03 +00:00
gcrypt__58___WARNING__58___Remote_ID_has_changed__33__.mdwn
gcrypt_remote__58___every_sync_uploads_huge_manifest.mdwn
gcrypt_repository_not_found.mdwn mark as done 2018-05-22 20:56:32 +00:00
gcrypt_rsync_remotes_don__39__t_work.mdwn 2018-10-28 15:00:59 +00:00
gcrypt_special_remote_fails_on_bare_remote_repos.mdwn
get_--json_fails_whenever_plain_get_works___40__with_https_urls__41__.mdwn close 2018-08-06 12:50:29 -04:00
get_-J___34__fails__34___to_get_files_with_the_same_key.mdwn better dup key with -J fix 2017-10-17 18:48:53 -04:00
get_-J_cannot_be_used_with_password-based_authentication.mdwn
get_-J_from_ssh_remote_tries_to_lock_in_home_directory__63__.mdwn 2018-02-10 02:46:45 +00:00
get_-JX__58____transfer_already_in_progress_..._for_some_files.mdwn Fix reversion introduced in 6.20171214 that caused concurrent transfers to incorrectly fail with "transfer already in progress". 2018-03-14 18:55:34 -04:00
get_fails_to_place_v7_unlocked_file_content_into_the_file_tree_in_v7_in_repo_with_detached_HEAD.mdwn check headRef not Branch.current 2019-07-16 12:36:29 -04:00
get_from_exporttree_remote_sometimes_fails.mdwn improve messages around export conflicts 2018-11-13 15:50:06 -04:00
get_from_the_web_remote_fails___40__redirect__63____41___-_lack_of_further_debug_info.mdwn Display error message when http download fails. 2018-05-08 16:11:45 -04:00
Get_gpg_subkey_id_used_for_encryption.mdwn 2019-01-02 17:37:57 +00:00
get_over_ssh_fails_with___fd__58__19__58___hClose__58___resource_vanished.mdwn Revert "clean P2P protocol shutdown on EOF" 2018-09-25 14:04:12 -04:00
GHC_8.4.3_build_failure_in_Types__47__DesktopNotify.hs.mdwn Fix build with ghc 8.4+, which broke due to the Semigroup Monoid change 2018-05-30 12:28:43 -04:00
git-annex-drop_docs_and_git-annex-requires.mdwn improve git-annex-drop man page required content docs 2019-06-26 12:22:59 -04:00
git-annex-export_treeish_subdir_path_does_not_exist__91____91__done__93____93__.mdwn close 2018-08-03 13:35:05 -04:00
git-annex-fsck_fails___34__thread_blocked_indefinitely_in_an_STM_transaction__34__.mdwn added bug report re: git-annex-fsck failing with "thread blocked indefinitely" 2019-07-23 16:03:27 +00:00
git-annex-fsck_reports_dead_keys_as_errors.mdwn added bug report about fsck flagging dead keys as errors 2019-07-23 20:56:19 +00:00
git-annex-import_declines_to_import_git-ignored_fies.mdwn added bug report for when git-annex-import declines to import files that are under the repo but are git-ignored 2019-02-25 18:34:16 +00:00
git-annex-init_with_no_args_overwrites_existing_repo_description.mdwn fix repo description setting bugs 2019-05-23 12:51:01 -04:00
git-annex-install_for_Android_crashes_on___34__arm7el__34__.mdwn initial issue description 2018-10-31 15:51:04 +00:00
git-annex-migrate_fails.mdwn migrate: Fix failure to migrate from URL keys. (Reversion introduced in version 6.20180926) 2018-10-29 16:36:36 -04:00
git-annex-move_not_using_parallelism__63__.mdwn added bug - creating git-annex-move not using parallelism? 2018-10-24 18:32:21 +00:00
git-annex-shell_-c_git-annex-shell_doesn__39__t_work__44___while_git-annex_expects_it_to.mdwn moreinfo this 2018-08-08 11:05:05 -04:00
git-annex-shell_configlist_doesn__39__t_work_over_SSH.mdwn 2018-07-23 22:38:11 +00:00
git-annex-sync_not_quite_idempotent__63__.mdwn added bug report where git-annex-sync seems not idempotent 2019-08-12 20:50:07 +00:00
git-annex-sync_sometimes_fails_in_submodule_in_V6_adjusted_branch.mdwn
git-annex.linux.6.20180914_-__62___assistant_requires_s3_bucket.mdwn 2018-10-07 20:09:27 +00:00
git-annex_6.20161031_fails_with_filenames_containing_newlines.mdwn
git-annex__58___.git__47__annex__47__keys.tmp__47__db__58___setFileMode__58___permission_denied___40__Operation_not_permitted__41__.mdwn 2019-05-14 19:02:27 +00:00
git-annex__58_____60__socket__58___16__62____58___hPutBuf__58___resource_vanished___40__Broken_pipe__41__.mdwn
git-annex__58___content_is_locked__while_trying_to_move_under_NFS_and_pidlock.mdwn
git-annex__58___fd__58__14__58___hGetLine__58___end_of_file.mdwn
git-annex__58___unable_to_decommit_memory__58___Invalid_argument.mdwn
git-annex_adds_unicode_characters_at_end_of_checksum.mdwn followup 2018-03-06 13:51:06 -04:00
git-annex_addurl___38___CDN__58___curl_does_not_follow.mdwn analysis and close as misconfiguration 2019-01-21 14:43:32 -04:00
Git-annex_and_Microsoft_Office_files_on_OS_X.mdwn
git-annex_branch_not_being_pushed_after_git-annex_forget.mdwn
git-annex_branch_shows_commit_with_looong_commitlog.mdwn
git-annex_can__39__t_compile_on_FreeBSD.mdwn close 2018-08-16 16:41:08 -04:00
git-annex_can__39__t_compile_on_FreeBSD_using_stack.mdwn Fix build on FreeBSD 2018-08-29 12:09:03 -04:00
git-annex_can__39__t_find_gpg_if_it__39__s_named_gpg2.mdwn
git-annex_can_no_longer_copy_files_to_box.mdwn close bug 2017-10-16 14:50:30 -04:00
git-annex_cannot_connect_to_freenet_cloud___40__webdav__41__.mdwn
git-annex_confuses_Git_with_nested_submodules.mdwn
git-annex_died_of_signal_11_when_syncing_content.mdwn
git-annex_does_not_build_with_aws_0.16.mdwn
git-annex_does_not_install_on_windows_without_admin_rights.mdwn
git-annex_doesn__39__t_find_adb_device.mdwn adb: Android serial numbers are not all 16 characters long, so accept other lengths. 2018-06-12 13:56:01 -04:00
git-annex_drop_fails_to_access_file__58____47____47____47___target_URL_on_Windows.mdwn
git-annex_fsck_in_quiet_mode_don__39__t_report_the_files_it_failed_to_download.mdwn 2017-08-21 09:10:49 +00:00
git-annex_get_with_umlaut_characters_in_filenames.mdwn
git-annex_in_nixpkgs_fails_with_git-2.13.0.mdwn
git-annex_merge_stalls.mdwn
Git-annex_not_properly_detecting_symlink_capability_in_CryFS.mdwn init: Display an additional message when it detects a filesystem that allows writing to files whose write bit is not set. 2017-08-28 13:21:18 -04:00
git-annex_precommit_.__gets_stuck_after_likely_interrupted___96__annex_add__96___call.mdwn fixed up formatting typo 2019-03-18 23:24:50 +00:00
git-annex_requires_an_SSH_remote_to_have_an_absolute_path.mdwn close 2018-08-08 11:03:43 -04:00
git-annex_stack.yml_misses_extra-deps..mdwn
git-annex_standalone_provides_gpg_but_not_gpg-agent.mdwn Removed bundled gpg from the Linux standalone build and OSX dmg 2019-03-18 16:31:07 -04:00
git-annex_standalone_runshell_locale_cache_fails_on_too-long_filenames.mdwn fixed URL link 2019-02-24 21:15:11 +00:00
git-annex_sucking_up_all_available_RAM_after_startup.mdwn
git-annex_upgrade_fails.mdwn Refuse to upgrade direct mode repositories when git is older than 2.22 2019-08-29 15:24:41 -04:00
git-annex_wants_to_repair_because_of_duplicateEntries_in_git_fsck.mdwn
git-annex_won__39__t_execute_on_WD_My_Cloud_NAS.mdwn
git-clone_--single-branch_confuses_git-annex-init_and_git-annex-sync.mdwn close; not a bug 2019-06-12 14:45:25 -04:00
GIT__95__ANNEX__95__SHELL__95__DIRECTORY_won__39__t_match.mdwn Better ssh connection warmup when using -J for concurrency. 2018-03-07 17:30:14 -04:00
git_annex___36__command_--help_not_recoginized.mdwn close bug filed about git-annex from 2014 2017-08-28 13:29:36 -04:00
git_annex_add_out_of_memory__63___mmap_failed__58___No_such_file_or_directory.mdwn
git_annex_adjust_--unlock_seems_to_cause_migration_of_a_file_to_another_backend.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
git_annex_assistant_exits_with_failure.mdwn
git_annex_assistant_failing_with_ARM_NAS.mdwn
git_annex_assistant_leaks_a_lot_of_memory.mdwn
git_annex_cannot_get_my_files_after_clone.mdwn
git_annex_daemon_crashes_when_authenticating_with_jabber.de.mdwn
git_annex_enableremote_gcrypt_failure_leaves_a_remote.mdwn
git_annex_enableremote_ignoring_encryption_changes.mdwn
git_annex_forget_--drop-dead_can_lose_group_information.mdwn Fix git-annex branch data loss that could occur after git-annex forget --drop-dead 2018-08-06 17:36:30 -04:00
git_annex_fsck_--from_web_removes_all_urls_of_a_file.mdwn Web.checkKey: Fix handling of multiple urls 2017-11-07 16:15:44 -04:00
git_annex_help_options_not_piped_through_PAGER.mdwn respond and close 2017-08-28 13:36:08 -04:00
git_annex_import_fails_on_filenames_with_newlines_in_them.mdwn Support newlines in filenames. 2018-09-20 13:45:44 -04:00
git_annex_import_is_dangerous_if_you_have_unused_objects.mdwn
git_annex_info_fails_on_NFS__58___waitToSetLock__58___resource_exhausted___40__No_locks_available__41__.mdwn
git_annex_should_check_that_stdout_isatty_when_reporting_progress.mdwn
git_annex_status_fails_with_submodule_in_direct_mode.mdwn
git_annex_still_deleting_content_when_merging.mdwn
git_annex_sync_in_direct_mode_does_not_honor_skip-worktree.mdwn
git_annex_test_fails.mdwn fix process and FD leak 2017-09-29 22:36:08 -04:00
git_annex_test_fails_when_run_through_powershell.mdwn
git_annex_testremote_fails_on_OSX_because_native___39__mktemp_-d__39___doesn__39__t_work.mdwn
git_annex_upgrade_loses_track_of_files_with___34____38____34___character___40__and_probably_others__41__.mdwn
git_annex_wont_work_with_git-dir_and_work-tree.mdwn
Git_copy_fails_with_absolute_path_on_mavericks.mdwn
git_fsck_duplicateEntries_errors_when_using_adjusted_branch.mdwn 2018-07-08 18:57:54 +00:00
git_index_lock_.mdwn added bug report about git index lock being held during concurrent operations 2018-12-07 17:08:25 +00:00
git_proxy_uses_ls-files_without_--exclude-standard.mdwn tweak url 2018-05-21 05:13:10 +00:00
git_rename_detection_on_file_move.mdwn
git_worktree_remove_fails.mdwn added bug report where git worktree remove fails 2019-03-13 17:54:52 +00:00
gitweb_link_is_wrong_on_download_page.mdwn fix link on download page and add a few more to break later 2018-12-10 12:55:13 -04:00
glacier.mdwn
glacier_from_multiple_repos.mdwn
googlemail.mdwn
gpg-agent.mdwn
gpg_goes_to_100__37___cpu_on_bad_input_data.mdwn
GPG_passphrase_repeated_prompt.mdwn
GPG_subkeys.mdwn fix gpg subkey support typo 2017-12-05 13:58:53 -04:00
graft__47__graft_cleanup_commits_--_really_needed__63__.mdwn close 2017-10-30 15:13:25 -04:00
Handling_of_files_inside_and_outside_archive_directory_at_the_same_time.mdwn
Hard_links_not_synced_in_direct_mode.mdwn
high_cpu_usage_in_cat-file_and_webapp.mdwn
How_to_clone_git-annex__63__.mdwn close 2017-08-28 13:01:56 -04:00
how_to_copy_tp_multiple_remotes_simultaneously__63__.mdwn
howto_guarantee_a_single_instance_of_a_special_remote__63__.mdwn new line was swallowed while copy pasting -- fixed 2018-03-05 19:48:29 +00:00
http_git_remote_uuid_discovery_repeated.mdwn
huge_multiple_copies_of___39__.nfs__42____39___and___39__.panfs__42____39___being_created.mdwn
Hybrid_encryption_can__39__t_generate_the_right_key_after_moving_files.mdwn 2017-06-03 19:24:58 +00:00
if_annex.genmetadata_is_true__44___modification_metadata_is_imported_from_older_file_versions_after_unlock+add.mdwn don't copy old date metadata when adding new version of a file 2018-04-04 13:58:16 -04:00
import_--force_does_not_operate_on_locked_files.mdwn import: Let --force overwrite symlinks, not only regular files 2019-03-18 16:40:15 -04:00
import_tree_should_skip_.git.mdwn Don't try to import .git directories from special remotes 2019-06-04 15:14:20 -04:00
importfeed___34__parsing_the_feed_failed__34___without_further_info.mdwn avoid url resume from 0 2019-06-20 12:26:17 -04:00
importfeed_bad_request_without_User-Agent__58__.mdwn fix User-Agent reversion 2018-07-16 11:56:47 -04:00
importfeed_does_not_work_with_socks_proxy.mdwn close old bug 2018-06-15 14:44:32 -04:00
Importing__95__Commands__95__Destructive__95__by__95__default.mdwn close 2018-12-09 11:44:53 -04:00
importtree_not_supported_in_adb_remote.mdwn close 2019-04-23 12:42:13 -04:00
Impossible_to_enable_an_existing_gcrypt_repo_in_the_webapp.mdwn
impossible_to_login_to_the_website_at_times.mdwn 2018-11-12 16:36:26 +00:00
impossible_to_perform___34__read-only__34___git_annex_info_without_write_permissions.mdwn initial complaints about needing write permissions for info command 2018-02-20 00:02:11 +00:00
in_case_of___34__incomplete__34_____40__no_rmets__41___export_to_versioned_S3__44___fails_on_initial___96__get_-J__96___call__44___but_then___34__succeeds__34___on_subsequent.mdwn initial report 2019-05-01 22:03:53 +00:00
inAnnex_check_failed_repeatedly_for_present_content_v6.mdwn v6: Fix database inconsistency 2018-10-16 13:51:37 -04:00
inconsistent_output_upon_addurl_--batch_complicates_if_not_forbids_reliable_parsing_of_output.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Inconsistent_results_between_git-annex-fsck_and_git-annex-whereis.mdwn
Incorrect_escaping_of_file_names_for_smudging.mdwn Add -- before %f in the smudge/clean filter configuration 2019-03-18 14:12:13 -04:00
indeterminite_preferred_content_state_for_duplicated_file.mdwn update slightly 2018-11-13 15:13:44 -04:00
Infinite_loop_when_synchronizing_between_many_machines.mdwn 2017-08-20 15:26:34 +00:00
info_--json_lists_backend_usage_stats_as_a_list_of_lists.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Initial___34__Make_repository__34___fails_due_to___34__empty_ident_name___40__for___60__email-address__62____41___not_allowed__34__.mdwn
initial_get_-J_on_exported_S3_bucket_fails.mdwn Fix concurrency bug that occurred on the first download from an exporttree remote 2018-10-22 12:59:10 -04:00
initremote_doesn__39__t_work_in_scripts.mdwn
install-completions_target_has_missing_dependency.mdwn add missing build dep of install-completions 2019-08-16 11:42:00 -04:00
Installing_git-annex_on_macOS_10.13_HighSierra_via_brew_install_git-annex_require_to_install_lib_magic_via_the_command_brew_install_lib_magic.mdwn 2018-03-13 21:35:02 +00:00
interoperability_issue_between_buster_and_stretch.mdwn close dup of fixed issue 2018-11-12 16:16:26 -04:00
Is_there_any_way_to_rate_limit_uploads_to_an_S3_backend__63__.mdwn
Issue_fewer_S3_GET_requests.mdwn
Issue_on_OSX_with_some_system_limits.mdwn
issue_with_syncing_between_v5_and_v6_repos.mdwn followup and closd 2017-12-11 13:09:28 -04:00
It_is_very_easy_to_turn_git-annex_into_a_zombie.mdwn
jobs.mdwn fix git command queue to be concurrency safe 2018-08-28 13:16:33 -04:00
json_should_be_utf8_regardless_of_locale.mdwn Fix mangling of --json output of utf-8 characters when not running in a utf-8 locale 2018-04-16 16:21:21 -04:00
keeps_demanding_ssh_key_even_if_all_sync__39__s_turned_down.mdwn
leaves_many_stray_processes_on_remote_server.mdwn sign 2019-02-06 19:11:24 +00:00
lineageOS_android_install_fail__58___incorrect_arch_test.mdwn Android: Fix typo of name of armv7l in installation script. Thanks, 4omecha. 2019-03-22 09:39:18 -04:00
Linux_standalone__39__s_metadata_--batch_can__39__t_parse_UTF-8.mdwn
linux_standalone_git_annex_won__39__t_work_in_a_directory_whose_path_contains___58___or___59__.mdwn
Linux_standalone_on_armv5tel__58___error__58_____34__git-annex_died_of_signal_4__34__.mdwn arm ghc bug fixed 2019-06-26 00:55:05 -04:00
loadlocale_error_with_standalone_build.mdwn rename obnoxiously and non-portably long bug report filename 2019-02-15 13:44:46 -04:00
Local_network___40__ssh__41___fails_to_pair__47__sync.mdwn
Location_change_of_remote_DNS_ignored.mdwn
lookupkey_started_to_spit_out___34__debug__34___messages_to_stdout.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Low_disk_space_corrupts_state.mdwn
MacOSX__58___archive_folders_not_working_as_expected.mdwn 2018-12-30 23:24:43 +00:00
make_install_doesn__39__t_create_git-annex-shell.mdwn
Make_Setup.hs_work_for_cabal_new-build.mdwn Makefile: Added install-home target which installs git-annex into the HOME directory 2019-03-18 12:36:03 -04:00
Makefile_should_use___36____40__GHC__41___to_run_ghc_--make.mdwn use GHC not ghc 2019-08-16 11:00:28 -04:00
man_page_for_command_misses_actual_command_in_the_synopsis_for_git-annex-checkpresentkey.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
manages_to_incorrectly_add_to_annex_instead_of_git_based_on___34__mimetype__34___-_we_cannot_figure_it_out_why.mdwn close 2019-05-06 12:02:10 -04:00
Massive_git_add_produces_sqlite_crashes.mdwn v7 bug review and cleanup 2019-08-28 12:20:30 -04:00
merge_causes_out_of_memory_on_large_repos.mdwn
Metadata_charset_not_uniform.mdwn
metadata_view_does_not_vpop_to_original_view.mdwn
Metadata_views_in_v6_repo_upgraded_from_direct_mode_act_strangely.mdwn close bug report, open todo item 2018-10-26 13:03:18 -04:00
migrate_and_move_duplicates_data.mdwn
migrated_files_not_showing_up_in_unused_list.mdwn
migrating_to_non-E_backend_still_adds_extensions.mdwn fix migration bug and make fsck warn 2018-05-23 14:07:51 -04:00
minor_display_glitch_with_ssh_password_prompting_and_-J.mdwn
Missing_automounts_block_every_command.mdwn add remote.<name>.annex-checkuuid 2018-01-10 14:21:18 -04:00
Missing_backend_extension_in_files_with_long_extensions.mdwn close 2018-10-04 15:33:37 -04:00
Missing_sanity_check_of_group_names._Special_group_names_should_not_be_allowed..mdwn close 2018-06-04 16:52:10 -04:00
More_build_oddities_under_OpenBSD.mdwn close old openbsd build bugs 2018-08-17 16:18:40 -04:00
moreinfo.mdwn
Move_out_of_shared_repository_as___34__maintenance_user__34___gives_permission_denied_for_files_edited_by_others.mdwn
move_violates_numcopies.mdwn move: Avoid drops that make bad situations worse, but otherwise allow 2018-04-13 14:36:43 -04:00
Moved_files_are_not_picked_up_by_the_assistant_on_OS_X.mdwn
multiple_ssh_prompts__44___and_thread_blocked_indefinitely_in_an___63____63____63___transaction.mdwn finally done with this 2018-11-19 18:44:03 -04:00
mysterious_dependency_of_git_annex_status_output_of_the_added_file.mdwn fixed 2018-09-10 18:30:46 +00:00
Nearline_bucket_stopped_working___40__can__39__t_even_HEAD_files__41__.mdwn
new_git-annex-shell_protocol_hides_remote_error_messages.mdwn display p2pstdio stderr after auth 2018-06-12 14:59:05 -04:00
new_whereis_--json_lost_information_about_web_urls_if_other_special_remotes_provide_them.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
no_git-annex_shell_on_Windows.mdwn
No_MonadFail_instance.mdwn close 2019-01-16 15:08:35 -04:00
no_prebuilt_package_for_intel_64_architecture.mdwn close 2017-08-17 11:49:42 -04:00
no_progress_display_for_transfer_to_or_from_export_remote.mdwn close 2019-01-31 13:49:51 -04:00
Non-annexed_files_being_annexed_and_not_stored.mdwn
non-git-annex_symlinks_not_perserved_when_exporting_tree_via_rsync.mdwn initial but submission 2018-06-05 22:08:57 +00:00
non-repos_in_repositories_list___40__+_other_weird_output__41___from_git_annex_status.mdwn
occasional_hang_with_p2pstdio.mdwn fixed processTranscript hang problem 2018-03-15 16:14:22 -04:00
Offline_editing_in_Android_removes_files_and_creates_links.mdwn
Old_dependencies_are_causing_pain_with_NixOS_18.09.mdwn close 2018-12-09 11:41:34 -04:00
on_encfs__44___.fuse__95__hiddenXXXXX_files_left_behind.mdwn
On_Lubuntu_14.04_assistant_fails_to_create_new_setup_or_actually_work___40__fixed_by_regular_lxsession_package_update_from_2014-06-30__41__.mdwn
On_Windows__44___can__39__t_use_a_USB_disk_annex_created_on_Linux.mdwn
On_Windows__44___can__39__t_use_repository_that_has_a_unix-style_local_remote_configured.mdwn
One_Client_Not_Syncing_Content.mdwn
Operating_system_should_be_contained_in___96__git_annex_version__96___output_regardless_if_in_annex_repo_or_not.mdwn avoid unncessary version output differences in different contexts 2018-06-04 12:26:18 -04:00
OSX__58___addurl_--batch_--json_spits_out_shortened_output_string__dies_off_with_4.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
OSX__58___Assistant_leaves_repo_in_inconsistent_state.mdwn
OSX_assistant_fails_to_download_new_file_after_initial_pass.mdwn
OSX_Assistant_will_not_automatically_drop.mdwn clarify 2018-04-29 19:43:07 +00:00
OSX_case_insensitive_filesystem.mdwn
Out_of_memory_error_when_adding_large_files_to_v6_repository.mdwn close as dup 2017-06-09 13:43:53 -04:00
Packfile_does_not_match_digest__58___gcrypt_with_assistant.mdwn
Pairing_locally_shows__58_____34__bad_comment_in_ssh_public_key_ssh-rsa__34__.mdwn
parallel_copy_fails.mdwn added bug report for failing parallel copy 2019-07-03 21:38:06 +00:00
parallel_copy_to_S3_fails.mdwn problem with multi-threaded copying to an S3 remote. 2019-05-09 03:00:34 +00:00
parallel_get_can_fail_some_downloads_and_require_re-getting_.mdwn
Permission_problem_in_second_user_account_on_Android.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
Please_include_version_of_used_to_build_ghc_within___34__git_annex_version__34__.mdwn 2018-11-19 15:39:27 +00:00
Podcast_filename_encoding_breaks_Android_client.mdwn
post-receive.mdwn I the missing verb ;) 2018-09-25 19:50:32 +00:00
potential_data_loss_after_late_enabling_of_S3_versioning.mdwn S3: Detect when version=yes but an exported file lacks versioning, and refuse to delete it, to avoid data loss. 2019-01-29 15:07:27 -04:00
preferred_content__58___include_statement_does_not_allow_spaces_in_filenames.mdwn
prematurely___40__can__39__t_check_offline__41___marks_remote_as_annex-ignore.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
present_files__47__directories_are_dropped_after_a_sync.mdwn
problem_commit_normal_links.mdwn
Problem_setting_up_encrypted_repository_using_the_assistant_with___40__outside_of_git-annex__41___shared_pgp_key.mdwn
problem_with_upgrade_v2_-__62___v3.mdwn
problems_with_android_and_gpg.mdwn close almost all old Android app bug reports 2018-05-08 15:00:46 -04:00
proposal_for_timestamp_semantics.mdwn 2018-03-17 19:05:38 +00:00
R__47__O_permissions_are_stalking_me_somehow.mdwn
Race_condition_between_watch__47__assistant_and_addurl.mdwn
ran_once_then_stopped_running_opensuse_13.1.mdwn
random_files_vanishing_when_assistant_gets_restarted.mdwn
Recover_files_deleted_by_git-annex.mdwn 2018-12-30 22:13:27 +00:00
Recreating_remote_repository__39__s_annex.mdwn
regression_-_fails_to_drop_._Exit_code_11_wo_--debug__44___and_1_with_--debug.mdwn back out incorrect IO interleaving change 2018-05-08 13:54:42 -04:00
regression_-_yt__58___prefix_for___34__regular__34___urls.mdwn fix regression in addurl --file caused by youtube-dl support 2017-12-06 13:22:31 -04:00
regression__58___fails_to_detect_need_for_pidlock_on_an_NSF_mount.mdwn initial report about regression failing to detect need for pidlock 2019-08-23 14:16:11 +00:00
regression__58___http_downloads_redirecting_to_ftp_are_no_longer_supported.mdwn add back support for following http to ftp redirects 2019-05-30 16:04:59 -04:00
Regression_in___96__find_--json__96___output.mdwn Fix find --json to output json once more. 2019-07-05 09:58:37 -04:00
regression_with_S3_creds_not_used.mdwn
Remote_does_not_work_with_UTF-8_filenames.mdwn close, not a bug in git-annex 2018-10-04 15:25:03 -04:00
remote_files_appear_but_are_unreadable_because_their_symlink_targets_don__39__t_exist.mdwn
remote_not_showing_up_in_webapp.mdwn
Remote_repositories_have_to_be_setup_encrypted.mdwn
remote_repository_must_be_version_6_as_well_to_have_copied_files_appear_correctly.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
remote_tracking_exporttree_importtree_directory.mdwn fix export subtree reversion 2019-05-06 13:57:13 -04:00
Remote_webapp_on_debian_stretch_not_responding.mdwn 2018-04-17 22:34:24 +00:00
remotes_disappeared.mdwn
Renamed_special_remote_cannot_be_reactivated_by_the_webapp.mdwn
repeated_import_of_same_content_files_from_remote.mdwn remove wrong uniqueness constraint from ContentIdentifier db 2019-04-09 19:58:24 -04:00
reports_success_when_addurl_--batch__a_file_which_is_.gitignore__39__d.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Resource_exhausted.mdwn
Resource_temporarily_unavailable_when_running_enableremote.mdwn
rsync__58___protocol_version_mismatch.mdwn
rsync_and_gcrypt_special_remotes_make_-J_slow.mdwn avoid rsync/gcrypt ssh startup delay with -J 2019-06-13 11:16:38 -04:00
rsync_fails_with_sync_error__58___syntax_or_usage_error.mdwn merge 2018-12-03 13:42:56 -04:00
rsync_fails_with_sync_error__58___syntax_or_usage_error_.mdwn
s3_InternalIOException__63__.mdwn
S3_remote___8212___un-embedding_creds__63__.mdwn
same_uuid_for_remotes_with_same_path_but_different_name.mdwn close, non-bug 2019-06-26 12:22:55 -04:00
schedule.log_added_to_annex__63_____58____47____47____47__.mdwn 2018-02-17 14:43:36 +00:00
security_hole_private_data_exposure_via_addurl.mdwn close 2018-06-21 15:49:11 -04:00
Selfsigned_certificates_with_jabber_fail_miserably.mdwn
set_metadata_leaks_from_one___40__staged__41___key_to_another_during_rename_of_file.mdwn original discovery 2017-09-26 18:03:47 +00:00
Set_some_reasonable_requirements_lower-bound_for_linux_standalone_builds__58___no_longer_usable_on_CentOS_6.5.mdwn
sharedpubkey_is_using_a_different_filename_encryption_method_than_shared.mdwn 2018-07-23 22:36:21 +00:00
should_be_possible_to_use_ssh_hosts_from_.ssh__47__config.mdwn
Should_try_again_when_network_fails___40__esp._DNS__41__.mdwn
shouldn__39__t_keep_permissions_of_the_ssh_remote__63__.mdwn
Show_current_config_of_special_remote.mdwn Merge branch 'master' of ssh://git-annex.branchable.com 2019-05-20 09:50:56 -04:00
signal_weirdness.mdwn
silently_failing_when_attempting_to_add_ignored_files.mdwn
SmartGit__39__s_Cherry-Pick_function_throws_error_with_git-annex.mdwn
SMB__58___git_annex_clone_works__44___get_fails_on_transfer_lock.mdwn Fix bug that prevented transfer locks from working when run on SMB or other filesystem that does not support fcntl locks and hard links. 2017-06-06 14:22:03 -04:00
smudge_errors_on_os-x.mdwn 2019-06-25 01:04:24 +00:00
some_tests_fail_while_running_under_NFS.mdwn
some_transfers_for_get_-J4_fail_over_ssh__47__rsync_and_require_retry.mdwn initial report on intermittent get -J failures over ssh 2018-09-18 14:48:37 +00:00
special_characters___34____63____58___on_FAT_partition.mdwn 2019-02-07 14:24:08 +00:00
special_directory_remotes__58___git_annex_copy_fails_if_tmp__47___is_a_symbolic_link_to_another_device.mdwn 2018-11-23 07:31:07 +00:00
special_remote_protocol__58___adding_local_state_variables___40__not_under_git__41__.mdwn
SSL_repos_does_not_show_up_in_Assistant.mdwn
standalone_build_is_slightly_out_of_date.mdwn initial report about standalone out of date 2018-09-25 13:31:05 +00:00
standalone_builds_shouldn__39__t_pollute___126____47__.ssh_with_helpers_merely_upon_annex_init.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
standalone_debian_pkg_build_fails_in_sid.mdwn rethrow ExitStatus exceptions 2018-11-19 13:18:08 -04:00
startup_scan_extremely_slow.mdwn
still_seeing_errors_with_parallel_git-annex-add.mdwn Merge branch 'master' of ssh://git-annex.branchable.com 2019-05-20 09:50:56 -04:00
Strange_case_of_data_loss__44___possibly_linked_to_git-annex_with_encrypted_rsync_remote.mdwn 2017-06-11 19:27:15 +00:00
Stress_test.mdwn
strips___95___from_extensions_in_E_backends__63__.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
suggests_to_enable_web_remote_even_when_there_is_no_web_urls_for_the_file.mdwn clean up url removal presence update 2018-10-04 17:35:49 -04:00
support_bare_git_repo__44___with_the_annex_directory_exposed_to_http.mdwn
Support_manual_configuration_of_tor_hidden_service.mdwn 2019-05-28 16:53:35 +00:00
surprising_import_tree_merge_result.mdwn break out a todo 2019-05-21 11:10:13 -04:00
Symlink_support_on_Windows_10_Creators_Update_with_Developer_Mode.mdwn 2018-02-09 13:39:36 +00:00
sync-git-annex_branch_not_syncing_in_the_assistant.mdwn
sync_claims_data_loss_but_seems_to_just_lose_tracking.mdwn
sync_deletes_files.mdwn
sync_does_not_drop_local_content_present_in_exporttree_remote.mdwn fix typo and triage 2019-01-06 19:23:36 +00:00
sync_on_a_repository_on_removable_media_should_not_leave_ssh_conns_open.mdwn
sync_with_clone_protocol_error.mdwn
Syncing_bare_repository_doesn__39__t_work_after_using_watch_on_Windows.mdwn 2017-08-16 16:49:46 +00:00
Syncing_of_file_contents_seems_to_be_broken_in_recent_versions_of_the_assistant.mdwn
Synology_NAS__58___timer__95__create__58___Bad_address.mdwn x86-32 standalone build break on Synology DS216+ 2018-09-03 04:30:42 +00:00
tahoe_remote_has_no_repair.mdwn
Termux__58__Boot_instructions_need_a_bit_of_clarity.mdwn clarifications 2018-10-26 13:51:15 -04:00
test_suite_fails_on_windows.mdwn fixed 2019-08-07 18:00:49 -04:00
Tests_fail_on_Windows_10.mdwn 2017-07-30 16:48:50 +00:00
the_assistant_fail_to_correctly_add_or_sync_ssh_remote_with_non_ascii_letter_in_the_directory.mdwn
The_S3_special_remote_limits_HTTPS_support_to_port_443.mdwn S3: Added protocol= initremote setting, to allow https to be used on a non-standard port 2019-03-22 12:17:05 -04:00
thread_blocked_indefinitely_in_an_STM_transaction__while_moving_within__a_local_clone.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Three_tests_fail_when_annex.backends_is_defined.mdwn
Too_difficult_if_not_impossible_to_explicitly_add__47__keep_file_under_git___40__not_annex__41___in_v6_without_employing_.gitattributes.mdwn v6: avoid accidental conversion when annex.largefiles is not configured 2018-08-27 14:51:10 -04:00
too_many_ssh_connections_during_sync_of_gcrypt_remotes.mdwn
tor_setup_needs_a_unique_magic-wormhole_appid.mdwn
touch.hsc_has_problems_on_non-linux_based_systems.mdwn
Transfers_continue_after_daemon_stopped.mdwn
TransferScanner_crashed__58___fd__58__59__58___hGetLine__58___end_of_file.mdwn
treatment_of_largefiles_is_not_working_for_addurl_--fast___40__or_--relaxed__41__.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Tries_to_upload_to_remote_although_remote_is_dead.mdwn
unable_to_access_annexed_files_from_a_git_repo_website_serving_via___34__smart_HTTP__34__.mdwn It was "user error", things work now properlyish 2018-11-01 03:53:02 +00:00
Unable_to_addurl_file__58____47____47____47___on_Windows.mdwn tuned up description and added my meta to find it later 2018-12-11 16:51:54 +00:00
Unable_to_get__47__addurl_to_http_link__58___download_failed__58___InvalidHeader___34__preload__34__.mdwn followup 2019-04-10 10:25:13 -04:00
unable_to_get_from_public_S3_remote_without_clear_reasoning_why.mdwn initial report on problem accessing previously exported public bucket 2018-09-11 17:07:16 +00:00
Unable_to_initialize_v5_Repository_on_a_Crippled_Filesystem.mdwn close bug the right way 2019-01-22 17:44:08 -04:00
Unable_to_setup_gcrypt_Remote_with_encryption__61__shared.mdwn 2018-11-30 20:51:48 +00:00
Unable_to_take_transfer_lock.mdwn close old bug which got fixed in the meantime 2017-10-02 12:34:23 -04:00
unannex__58___Cannot_proceed_with_uncommitted_changes_staged_in_the_index.mdwn
Unchanged_files_are_detected_as_modified_in_unlocked_branch.mdwn close, this was fixed last week 2018-08-27 12:15:43 -04:00
unclear_why_annex_fails_to_get_a_file_from_a_public_S3_bucket_where_it_exported_before.mdwn display error when an invalid url is downloaded 2018-09-25 13:38:20 -04:00
UnicodeDecodeError_while_archiving_files_with_git-annex_to_glacier.mdwn
unlock_should_warn_if_file_isn__39__t_in_repo.mdwn
unRAID_shares_treated_as_a_crippled_filesystem.mdwn followup; close 2017-06-06 15:36:10 -04:00
Upgrade_impossible_om_Mac_OSX.mdwn
upgrade_to_version_7_not_going_well__44___bup_remote_missing_its_uuid.mdwn close 2018-12-04 13:15:16 -04:00
Upload_to_box_very_slow.mdwn webdav: Avoid unncessisarily creating the collection at the top of the repo 2017-10-11 11:10:33 -04:00
Upload_to_S3_fails_.mdwn
URL_key_potential_data_loss.mdwn bug 2019-08-15 17:17:59 -04:00
use_of_annex_in_submodule_replaces_.git_with_incorrect_symlink.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
Uses_rsync_instead_of___96__cp_--reflink__61__auto__96___on_volumes_of_the_same_BTRFS_partition.mdwn CoW probing 2019-07-17 14:19:08 -04:00
using_old_remote_format_generates_irritating_output.mdwn
using_regular_magic_file__warning_pollutes_stderr.mdwn you requested his old closed bugs not be deleted yet 2017-10-02 11:58:31 -04:00
v6_-_under_subdir__58___git_add___34__whines__34____44___git_commit___34__blows__34__.mdwn fix reversions due to undocumented and buggy git behavior 2018-09-11 15:54:21 -04:00
v6__58___git_status__47__add_after_unlock_is_linear_to_the_file_size.mdwn close, this was fixed last week 2018-08-27 12:15:43 -04:00
v6__58___write_permission_on_annex_object_if_unlocked__44___modified__44___and_readded.mdwn make linkToAnnex freezeContent the object file 2018-09-05 15:27:22 -04:00
v6_appears_to_not_thin.mdwn
v6_hardlinking_is_not_stable_across_lock__47__unlock_or_cloning.mdwn When annex.thin is set, allow hard links to be made between executable work tree files and annex objects. 2018-10-26 13:51:43 -04:00
v6_smudge_filter_breaks_git_diff_for_files_outside_the_repository.mdwn improve smudge --clean behavior on outside work tree files 2018-11-15 13:04:40 -04:00
v6_unlock_confused_by_touch.mdwn v6: Fix database inconsistency 2018-10-16 13:51:37 -04:00
v7_fails_to_fetch_files_on_FAT_filesystem.mdwn analysis, already fixed 2018-12-04 12:17:48 -04:00
v7_unlock_big_file__58___out_of_memory.mdwn v7 bug review and cleanup 2019-08-28 12:20:30 -04:00
versioned_S3_generates_invalid_encoded_url.mdwn S3: Fix encoding when generating public urls of S3 objects. 2019-08-15 12:56:46 -04:00
VFAT_crazy_limit_on_max_filenames_in_directory.mdwn
vicfg_and_description_often_not_propagated.mdwn
Watcher_crashed__58___.git__92__annex__92__objects__92__...sha256....pdf__92____58___openTempFile__58___does_not_exist.mdwn
Watcher_crashed_in_Android_on___47__storage__47__sdcard1_-_bug__63__.mdwn
webapp__58___difficult_to_abort_adding_a_repository.mdwn
webdav_fails___40__server__58___radicale_0.9-1__41__.mdwn
webdav_remote_fails_on_pound_signs.mdwn close 2019-02-07 15:14:09 -04:00
weird_bug_with_annex_unlock_with_annex.thin_true_about_hard_links.mdwn 2017-12-07 18:38:15 +00:00
weird_interaction_between___34__required__34___and___34__numcopies__34___on_duplicate_files.mdwn 2018-11-12 20:46:59 +00:00
weird_unicode_bug_on_windows.mdwn
When_stopping___96__git_annex_get__96___files_left_broken.mdwn
when_you_get_a_file_but_don__39__t_actually_have_enough_space_for_it__44___the_error_message_makes_useless_suggestions.mdwn
whereis_claims_file_is_not_here__44___but_it_is_available_both_here_and_in_another_remote.mdwn
whereis_outputs_no_informaiton_for_unlocked_files.mdwn
whereis_shouldn__39__t_just_crash_if_one_of_the_special_remotes___34__drivers__34___is_not_available.mdwn initial report on whereis kaboom 2018-09-12 14:02:48 +00:00
why_are_all_those_files_modified.mdwn fixed in 11dbb829bc 2018-12-11 17:12:57 +00:00
windows__58___autostart_for_annex_64bit_looks_under_x86.mdwn Windows: If 64 bit git is installed, use it when installing git-annex. 2019-01-21 15:51:48 -04:00
Windows__58___Doesn__39__t_want_to_handle_files_with_2_dots_in_filename.mdwn
Windows__58___git_annex_get_failed.mdwn
Windows___58___git-annex__58___failed_to_read_sha_from_git_write-tree.mdwn
windows_annex_link_wrong.mdwn fix gitAnnexLink to not be absolute on Windows 2017-10-25 19:36:29 -04:00
Windows_build_test_failures.mdwn
windows_export_tree_exports_empty_tree.mdwn make test_export_import work on adjusted branch 2019-08-09 14:00:22 -04:00
windows_fails_import_export_tests.mdwn fixed 2019-08-13 16:45:24 -04:00
Windows_installer_includes_curl_and_wget__44___but_not_required_DLLs.mdwn
windows_support_totally_bitrotted.mdwn avoid git warning about CRLF in restagePointerFile 2019-02-18 18:35:36 -04:00
windows_test_suite_fails_to_init_direct_mode_repo.mdwn use separate main repo dir for each test suite pass 2019-08-08 14:29:28 -04:00
Windows_to_Linux_clone_-_Windows_drive_letters_cause_git_annex_get_to_fail.mdwn followup; close 2017-10-30 13:10:07 -04:00
withOtherTmp_file_escapes.mdwn avoid ingest lockdown file escaping the withOtherTmp call 2019-05-07 13:04:57 -04:00
Wrong_backend_extension_in_files_with_multiple_dots.mdwn
wrong_permissions_of_unused__44___badunused_and_tmpunused__63__.mdwn unused: Write .git/annex/unused etc files with appropriate permissions for the core.sharedRepository config. 2018-01-02 16:25:27 -04:00
WSL_adjusted_braches__58___smudge_fails_with_sqlite_thread_crashed_-_locking_protocol.mdwn 2019-07-06 09:50:27 +00:00
yesod-default_appears_no_longer_necessary.mdwn Removed no longer needed dependency on yesod-default. 2017-12-05 13:18:25 -04:00
zsh_completions_installed_to_location_not_in_fpath.mdwn Makefile: Changed default zsh completion location to zsh default fpath. 2019-08-16 14:08:56 -04:00