Using RhodeCode 1.5.4. Our remote Mercurial repositories exist on Linux RedHat servers. We typically use Tortoise to clone these repos locally via RhodeCode to Windows environment, do work locally, then push back to the remote repositories. This all works fine. However, I am also the owner of the remote repositories, and as such, I sometimes make changes to these repositories via scripts executed directly on the remote repository. These changes are not reflected in RhodeCode. I have to pull the repo locally, make a change, then push to the remote repo before changes made directly on the server show up in RhodeCode.
Not all Mecurial changesets are visible using RhodeCode
76 Views Asked by nancylt723 At
1
There are 1 best solutions below
Related Questions in LINUX
- Is there some way to use printf to print a horizontal list of decrementing hex digits in NASM assembly on Linux
- Why does Hugo generate different taxonomy-related HTML on different OS's?
- Writes in io_uring do not advance the file offset
- Why `set -o pipefail` gives different output even though the pipe is not failing
- what really controls the permissions: UID or eUID?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Docker container unable to make HTTPS requests to external API
- Whow to use callback_query_handler in Python 3.10
- Create kea runtime directory at startup in Yocto image
- Problem on CPU scheduling algorithms in OS
- How to copy files into the singularity sandbox?
- Android kernel error: undefined reference to `get_hw_version_platform'
- Is there a need for BPF Linux namespace?
- Error when trying to execute a binary compiled in a Kali Linux machine on an Ubuntu system
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
Related Questions in MERCURIAL
- "Mercurial only supports encoded strings" error?
- Mercurial: Uncommitted local changes are detected while there are none
- How to prevent CMake rerun after CMakeLists.txt changed?
- Using Beyond Compare with Mercurial as the external diff tool to perform in-place directory comparison
- Mercurial/TortoiseHg: Can multiple repositories share the exact same file(s)?
- Is there any way to use hg copy from a specific revision?
- Mercurial in WSL: HGEDITOR $PATH is different from my $PATH
- PYTHONHOME environment variable is unset and empty, I don't know what put to have my python related command working again on linux
- Pushing to local phabricator with TortoiseHG produces Error
- How to prevent a mercurial commit with no files specified (prevent commiting all modified files) using a hook
- What does `hg cp` do and how to "undo" it?
- Reliably run Mercurial's "hg status" from a C# program
- How to uncommit one file in a series of commits in TortoiseHG (Mercurial)?
- Finding changes to a block of text with mercurial
- UnicodeDecodeError while pulling in mercurial (hg) UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 4: ordinal not in range(128)
Related Questions in TORTOISEHG
- Mercurial: Uncommitted local changes are detected while there are none
- Mercurial/TortoiseHg: Can multiple repositories share the exact same file(s)?
- FileMerge tool errors
- TortoiseHg workbench - Commit&push changes of a repo - one subrepo is still in phase "draft" (not puhsed)
- TortoiseHg + MQ: how to customize the default name for new patches?
- How to uncommit one file in a series of commits in TortoiseHG (Mercurial)?
- Mercurial corruption? "No such file or directory"
- TortoiseHG Workbench - Delete Dropdown list with branch versions
- Different SSH ports/keys for different hosts, with TortoisePLink
- How can I open specific project in TortoiseHg workbench from CLI
- Mercurial (TortoiseHG) command-line on Windows does not respond to pager environment variables (and fails to use a pager at all)
- Committed and pushed incorrect revision in TortoiseHg
- TortoiseHG (Mercurial) - Push branch = abort: push creates new remote head
- How can I filter tortoisehg (Mercurial) to not show branches containing part of a string?
- How do I change TortoiseHg default UI font?
Related Questions in RHODECODE
- How to get files for mercurial changeset in rhodecode extension
- Discord Webhook with Rodecode
- Unable to clone via SSH
- Is it possible to get the files changed information from commit ids using mercurial python library?
- how to read configuration settings from custom hooks?
- Make Rhodecode display flat list of repos instead of the common grouped view
- possibility of having 2 mercurial servers, using the same database
- Build Jenkins Job after commit to repository
- How to work with a local hosted rhodecode mercurial git repository
- List project RhodeCode
- GIT - Error received during Clone and Pull requests
- Integrating private server hosted rhodecode into slack
- How do tags in Mercurial get propagated to all branches automatically?
- Command line: Create new repository(group) / a repository(project) inside an existing repo group in RhodeCode (uses Hg Mercurial)
- Hg ( Merculrial ) Backup policy
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This happens due to Cache system that RhodeCode is using. You can use this(https://docs.rhodecode.com/RhodeCode-Enterprise/api/api.html#invalidate-cache) API call to trigger manual cache invalidation. Or simply go to repository settings > caches> invalidate cache to manually trigger that.