Gitea v1.21.1 中文文档--home-dir /home/git \ 19. --create-home \ 20. git 1. mkdir -p /var/lib/gitea/{custom,data,log} 2. chown -R git:git /var/lib/gitea/ 3. chmod -R 750 /var/lib/gitea/ 4. mkdir /etc/gitea 5. chown supervisor 配置日志路径: 1. # assuming gitea is installed in /home/git/gitea/ 2. mkdir /home/git/gitea/log/supervisor 在文件编辑器中打开 supervisor 的配置文件: 1. sudo vim /etc/supervisor/supervisord.conf 增加如下示例配置 supervisord s 5. [picture] 6. AVATAR_UPLOAD_PATH = /home/:USER/gogs-data/avatars 7. [log] 8. ROOT_PATH = /home/:USER/gogs/log 到: 1. [database] 2. PATH = /home/:USER/gitea/data/:DATABASE.db 3. [attachment]0 码力 | 303 页 | 3.88 MB | 1 年前3
Unity for Human Beingshas a smart enough editor to go ahead and add the Canvas component and EventSystem for you. You don’t have to do anything with them, as a matter of fact, we could go ahead and run the project right now reserved Page 11 I went ahead and changed a few items within the Inspector pane to make things easier to see. So I feel obliged start off by making your folders and naming them accordingly. (Scripts, Scenes, Prefabs, Images). Go ahead and add 2 scripts into the script folder. Name one script “ButtonScript”, and the other “ControllerScript”0 码力 | 239 页 | 27.39 MB | 10 月前3
Pro Git 2nd Edition 2.1.413Changes Skipping the Staging Area Removing Files Moving Files Viewing the Commit History Limiting Log Output Undoing Things Unstaging a Staged File Unmodifying a Modified File Undoing things with git CONTRIBUTING Project Administration Managing an organization Organization Basics Teams Audit Log Scripting GitHub Services and Hooks The GitHub API Basic Usage Commenting on an Issue Changing Introduction Signing Tags Verifying Tags Signing Commits Everyone Must Sign Searching Git Grep Git Log Searching Rewriting History Changing the Last Commit Changing Multiple Commit Messages Reordering0 码力 | 731 页 | 21.49 MB | 1 年前3
Pro Git 2nd Edition 2.1.413 Changes Skipping the Staging Area Removing Files Moving Files Viewing the Commit History Limiting Log Output Undoing Things Unstaging a Staged File Unmodifying a Modified File Undoing things with git CONTRIBUTING Project Administration Managing an organization Organization Basics Teams Audit Log Scripting GitHub Services and Hooks The GitHub API Basic Usage Commenting on an Issue Changing Introduction Signing Tags Verifying Tags Signing Commits Everyone Must Sign Searching Git Grep Git Log Searching Rewriting History Changing the Last Commit Changing Multiple Commit Messages Reordering0 码力 | 691 页 | 13.35 MB | 1 年前3
Pro Git 2nd Edition 2.1.413community. The Open Source community using Git has also exploded. When I originally sat down to write the book nearly five years ago (it took me a while to get the first version out), I had just started publishing there were maybe a few thousand people using the site and just four of us working on it. As I write this introduction, GitHub is announcing our 10 millionth hosted project, with nearly 5 million registered large swaths of the Open Source community in a way that was barely conceivable when I sat down to write the first edition. I wrote a small section in the original version of Pro Git about GitHub as an0 码力 | 501 页 | 17.96 MB | 1 年前3
The Gimp User’s Manual version 1.0.1Filters................................... 485 Introduction 486 Edge 486 Laplace 487 LoG 487 Sobel 489 Chapter 32: Enhance Filters ......................................... 493 Wang, Kris Wehner, Matthew Wilson and all of you we have forgotten (if we’ve forgotten you, please write to karin@frozenriver.com to let us know). The G imp Us e r’s Man u al x x i C on tr i b u tor s Matt Chisholm (Found a bug in the font install chapter) • and anyone that we’ve forgotten (please write to karin@frozenriver.com and let us know!) xxii T h e G i m p Us er ’ s M a n u a l Ab o ut Thi0 码力 | 924 页 | 9.50 MB | 1 年前3
GIMP User Manual 2.2things out in GIMP, you should know that many operations work differently in QuickMask mode, so go ahead and toggle it off again for now (by clicking the QuickMask button once more). Feathering With plugins for a specific purpose can search the site in a variety of ways. Anybody in the world can write a GIMP plugin and make it available over the web, either via the Registry or a personal web site experiences. Macintosh We could use some material here. Writing Plugins If you want to learn how to write a plugin, you can find plenty of help at the GIMP Developers web site, developer.gimp.org. GIMP is0 码力 | 421 页 | 8.45 MB | 1 年前3
GNU Image Manipulation Program User Manual 2.4scroll bar to see all the things GIMP has created for you. Figure 2.3: User Installation Log The User Installation Log screen. 4. Setting your memory usage is not an easy thing. So much depends on what your packaged together with GIMP, but there are also many available by other means. In fact, the ability to write plug-ins (and scripts) is the easiest way for people not on the GIMP development team to add new capabilities those who care, it is a dialect of the Lisp-like language called Scheme). It is also possible to write GIMP scripts in Python or Perl. These languages are more flexible and powerful than Script-Fu; their0 码力 | 653 页 | 19.93 MB | 1 年前3
Trends Artificial Intelligence
undeniable that it’s ‘game on,’ especially with the USA and China and the tech powerhouses charging ahead. In this document, we share data / research / benchmarks from third parties that use methodologies Units ~300MM+ Units ~1B+ Units / Users ~4B+ Units Tens of Billions of Units MM Units in Log Scale Technology Compounding = Numbers Behind The Momentum13 AI Technology Compounding = Numbers gains. But payback periods are often long, especially for vertically-integrated players building ahead of demand. For newer entrants, monetization may lag build-out by quarters or even years. And then0 码力 | 340 页 | 12.14 MB | 4 月前3
Pro Git 中文版 第2版 2.1.66结尾的文件。一般这类对象文件和存档文件都是编译过程中出现的。 第二 行告诉 Git 忽略所有名字以波浪符(~)结尾的文件,许多文本编辑软件(比如 Emacs)都用这样的文件名保存 副本。 此外,你可能还需要忽略 log,tmp 或者 pid 目录,以及自动生成的文档等等。 要养成一开始就为你的 新仓库设置好 .gitignore 文件的习惯,以免将来误提交这类无用的文件。 文件 .gitignore 的格式规范如下: git rm 命令后面可以列出文件或者目录的名字,也可以使用 glob 模式。比如: $ git rm log/\*.log 注意到星号 * 之前的反斜杠 \, 因为 Git 有它自己的文件模式扩展匹配方式,所以我们不用 shell 来帮忙展开。 此命令删除 log/ 目录下扩展名为 .log 的所有文件。 类似的比如: $ git rm \*~ 该命令会删除所有名字以 ~ 结尾的文件。 移动文件 完成这个任务最简单而又有效的 工具是 git log 命令。 我们使用一个非常简单的 ``simplegit'' 项目作为示例。 运行下面的命令获取该项目: $ git clone https://github.com/schacon/simplegit-progit 当你在此项目中运行 git log 命令时,可以看到下面的输出: 43 $ git log commit ca82a6dff810 码力 | 501 页 | 19.30 MB | 1 年前3
共 468 条
- 1
- 2
- 3
- 4
- 5
- 6
- 47













