{"id":13936270,"url":"https://github.com/pavdmyt/git-ctm","last_synced_at":"2025-04-11T17:35:18.681Z","repository":{"id":57434496,"uuid":"120756816","full_name":"pavdmyt/git-ctm","owner":"pavdmyt","description":"⏳ git Commit Time Machine ⌛","archived":false,"fork":false,"pushed_at":"2018-02-09T12:01:38.000Z","size":949,"stargazers_count":42,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-04T23:29:20.384Z","etag":null,"topics":["cli","cli-utility","console","git","python","terminal","unix","version-control"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/git-ctm/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pavdmyt.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-02-08T12:09:54.000Z","updated_at":"2024-09-05T16:54:50.000Z","dependencies_parsed_at":"2022-09-09T20:31:47.581Z","dependency_job_id":null,"html_url":"https://github.com/pavdmyt/git-ctm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavdmyt%2Fgit-ctm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavdmyt%2Fgit-ctm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavdmyt%2Fgit-ctm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pavdmyt%2Fgit-ctm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pavdmyt","download_url":"https://codeload.github.com/pavdmyt/git-ctm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248450396,"owners_count":21105671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","cli-utility","console","git","python","terminal","unix","version-control"],"created_at":"2024-08-07T23:02:31.980Z","updated_at":"2025-04-11T17:35:18.659Z","avatar_url":"https://github.com/pavdmyt.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"git-ctm |pypi| |Wheel| |Versions| |License|\n===========================================\n\ngit-ctm = ``git commit`` Time Machine\n\nSometimes you need to create a commit with particular timestamp.\n**git-ctm** provides a command-line tool ``ctm`` for easy committing with desired timestamp:\n\n\n.. code:: bash\n\n   $ ctm -d 'Thu Feb 8 03:14:15 2018 +0200' -m 'my commit message'\n\n   # is the same as\n   $ GIT_AUTHOR_DATE='Thu Feb 8 03:14:15 2018 +0200'    \\\n     GIT_COMMITTER_DATE='Thu Feb 8 03:14:15 2018 +0200' \\\n     git commit -m 'my commit message'\n\n*All commits in this project are done with* ``ctm`` *itself.*\n\n\nInstallation\n------------\n\nFrom `PyPI`_ using ``pip`` package manager:\n\n.. code:: bash\n\n    pip install --upgrade git-ctm\n\n\nOr install the latest sources from GitHub:\n\n.. code:: bash\n\n    pip install https://github.com/pavdmyt/git-ctm/archive/master.zip\n\n\nOr just put ``ctm`` `PEX`_ (Python EXecutable) file somewhere in the ``$PATH``:\n\n.. code:: bash\n\n    $ git clone https://github.com/pavdmyt/git-ctm.git\n    $ cd git-ctm\n    $ sudo cp ctm /usr/local/bin/\n\nNow ``ctm`` command-line tool should be available to use, try:\n\n.. code:: bash\n\n    ctm --version\n\n\nUsage\n-----\n\n.. code:: bash\n\n    $ ctm --help\n    Usage:  ctm -d \u003cdate\u003e -m \u003cmsg\u003e\n            ctm -p\n\n      -d \u003cdate\u003e      Commit date and time\n      -m \u003cmsg\u003e       Commit message\n      -p             Print date template\n\n      --help         Print usage\n      --version      Print version\n\n\nDevelopment\n-----------\n\nClone the repository:\n\n.. code:: bash\n\n    git clone https://github.com/pavdmyt/git-ctm.git\n\n\nInstall dependencies:\n\n.. code:: bash\n\n    make install-dev\n\n\nLint code:\n\n.. code:: bash\n\n    make lint\n\n\nContributing\n------------\n\n1. Fork it!\n2. Create your feature branch: ``git checkout -b my-new-feature``\n3. Commit your changes: ``git commit -m 'Add some feature'``\n4. Push to the branch: ``git push origin my-new-feature``\n5. Submit a pull request\n6. Make sure tests are passing\n\n\nLicense\n-------\n\nMIT - Pavlo Dmytrenko\n\n\n.. |pypi| image:: https://img.shields.io/pypi/v/git-ctm.svg\n   :target: https://pypi.org/project/git-ctm/\n.. |Versions| image:: https://img.shields.io/pypi/pyversions/git-ctm.svg\n   :target: https://pypi.org/project/git-ctm/\n.. |Wheel| image:: https://img.shields.io/pypi/wheel/git-ctm.svg\n   :target: https://pypi.org/project/git-ctm/\n.. |License| image:: https://img.shields.io/pypi/l/git-ctm.svg\n   :target: https://pypi.org/project/git-ctm/\n\n\n.. _PyPI: https://pypi.org/\n.. _PEX: https://github.com/pantsbuild/pex\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavdmyt%2Fgit-ctm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpavdmyt%2Fgit-ctm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpavdmyt%2Fgit-ctm/lists"}