mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
ant: add Hindi translation (#14342)
* Create ant.md * Update pages.hi/common/ant.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * Update pages.hi/common/ant.md Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: debghs <145260557+debghs@users.noreply.github.com>
This commit is contained in:
parent
75f5ad69bd
commit
9b7335be75
1 changed files with 24 additions and 0 deletions
24
pages.hi/common/ant.md
Normal file
24
pages.hi/common/ant.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# ant
|
||||
|
||||
> Apache Ant: जावा-आधारित प्रोजेक्ट बनाएं और प्रबंधित करें।
|
||||
> अधिक जानकारी: <https://ant.apache.org>।
|
||||
|
||||
- डिफ़ॉल्ट बिल्ड फ़ाइल के साथ एक प्रोजेक्ट बनाएं `build.xml`:
|
||||
|
||||
`ant`
|
||||
|
||||
- बिल्ड फ़ाइल के अलावा अन्य का उपयोग करके एक प्रोजेक्ट बनाएं `build.xml`:
|
||||
|
||||
`ant -f {{buildfile.xml}}`
|
||||
|
||||
- इस परियोजना के लिए संभावित लक्ष्यों पर जानकारी प्रिंट करें:
|
||||
|
||||
`ant -p`
|
||||
|
||||
- डिबगिंग जानकारी प्रिंट करें:
|
||||
|
||||
`ant -d`
|
||||
|
||||
- उन सभी लक्ष्यों को निष्पादित करें जो विफल लक्ष्य पर निर्भर नहीं हैं:
|
||||
|
||||
`ant -k`
|
Loading…
Add table
Reference in a new issue