معرفی شرکت ها


git-make-0.1.1-alt1.noarch.rpm


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

version control and merging of intended and automatically produced results
ویژگی مقدار
سیستم عامل Linux
توزیع ALT p10
مخزن ALTLinux classic noarch
نام بسته git-make
نام فایل بسته git-make-0.1.1-alt1.noarch.rpm
نسخه بسته 0.1.1
انتشار بسته alt1
معماری بسته noarch
نگهدارنده -
تاریخ ساخت Fri 06 May 2016 06
هاست سازنده imz-sisyphus.hasher.altlinux.org
نوع بسته .rpm
آدرس صفحه اصلی https://www.gitorious.org/git-make
مجوز GAGPLv3+
حجم دانلود 8.0K
حجم نصب 8.153K
git-make is a tool that helps in "inductive" development of results. (It's a small set of commands implemented on top of git and make.) On one side, it's a way to get a nice output by manually refining raw automatic output, without the need to re-do the manual refining for each new revision of your sources (Git will merge your previous tweaks). It goes like this. You hold sources in Git, then make an output automatically (with a rule from Makefile), then tweak something in the generated output (because the program that produced it wasn't perfect or didn't perfectly match your wishes), and then on the next development cycle edit your sources, and get a tweaked (merged) output from the new revision. For every branch with sources (say, master), two additional branches are used: * master_/AUTO/goal to hold what was automatically generated for goal; * master_/OUT/goal -- your tweaked, manually inspected version of the output for goal, based on master_/AUTO/goal. On the other side, it's a kind of test-driven development: you can start by creating a small example result for "goal", accept it as a one conforming to your intentions (technically: commit in the special Git branch: master_/OUT/goal). Since then, this committed example can be viewed as the expected result of a test. Then you extend the rules in your sources, so that they produce a larger set of results (saved in the special branch master_/AUTO/goal), and gradually review them (by committing to master_/OUT/goal only the things you accept as good). The diff between master_/AUTO/goal and master_/OUT/goal shows what doesn't yet work as expected in the current revision of master. If there is no diff, this means that your rules and the program that generates the results are correct (i.e., perfectly match your intentions).


نیازمندی

مقدار نام
- /bin/bash
- findutils
- git-core
- make
- rpmlib(PayloadIsLzma)


ارائه دهنده

مقدار نام
= 0.1.1-alt1 git-make


نحوه نصب


نصب پکیج rpm git-make:

    sudo apt-get install git-make-0.1.1-alt1.noarch.rpm


فایل ها

مسیرها
/usr/bin/gitmk-add
/usr/bin/gitmk-afteramend
/usr/bin/gitmk-branch
/usr/bin/gitmk-drop
/usr/bin/gitmk-inherit
/usr/bin/gitmk-intend
/usr/bin/gitmk-make
/usr/bin/gitmk-start


گزارش تغییرات

تاریخ آخرین تغییر جزئیات
2016-05-06

check-GOAL targets should simply not have GOAL as a prerequisite;
make after a Git checkout.)
gitmk-make: proceed if nothing to commit (borrowed from gear --commit).
more clear short AUTO commit msg (for those who do not know about git-make).

2015-01-11

Initial release of the tool I've written & used for myself (to work